UNPKG

394 BTypeScriptView Raw
1// Type definitions for number-is-nan 2.0
2// Project: https://github.com/sindresorhus/number-is-nan#readme
3// Definitions by: Mohamed Hegazy <https://github.com/mhegazy>
4// Piotr Błażejewicz <https://github.com/peterblazejewicz>
5// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
6
7declare function numberIsNan(value?: unknown): boolean;
8
9export = numberIsNan;