Skip to content

Instantly share code, notes, and snippets.

View molvqingtai's full-sized avatar
:octocat:
Out sick

John Wu molvqingtai

:octocat:
Out sick
  • China
View GitHub Profile
@molvqingtai
molvqingtai / is-empty.js
Last active October 15, 2019 05:57
检测空值
/**
* 检测空值
* by: molvqingtai 2019-8-16
* @param {[all]} value [检测对象]
* @return {[Boolean]} [是否为空]
*/
const typesMap = new Map([
['[object Null]', value => true],
['[object Date]', value => false],
['[object Math]', value => false],