* 判断某个元素是否为undefined * @param {undefined} value * @return {Boolean}
(value)
| 214 | * @return {Boolean} |
| 215 | */ |
| 216 | isUndefined(value) { |
| 217 | return typeof value === 'undefined' |
| 218 | } |
| 219 | |
| 220 | /** |
| 221 | * 判断某个元素是否为null |
no outgoing calls
no test coverage detected