no description
npm install zhf.type-of
const typeOf = require('zhf.type-of');typeOf(''); // 'string'typeOf(0); // 'number'typeOf(true); // 'boolean'typeOf(null); // 'null'typeOf(undefined); // 'undefined'typeOf([]); // 'array'typeOf({}); // 'object'