UNPKG

js-wrench

Version:

JS函数库

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