UNPKG

mout

Version:

Modular Utilities

10 lines (7 loc) 209 B
/** * Gets the "kind" of value. (e.g. "String", "Number", etc) */ function kindOf(val) { return Object.prototype.toString.call(val).slice(8, -1); } module.exports = kindOf;