UNPKG

funclib

Version:

A powerful javascript functions library!

12 lines (10 loc) 173 B
/**@function*/ /** * [fn.isNul] 判断是否为:null * @param value : any */ function isNul(value) { return value === null; } /**@function*/ module.exports = isNul;