UNPKG

js-wrench

Version:

JS函数库

10 lines (9 loc) 215 B
/** * @description 是否NaN * * @param {*} v 任意值 * @return {*} {boolean} 返回一个布尔值 * @example isNaN(NaN) => true */ declare const isNaN: (v: any) => boolean; export default isNaN;