UNPKG

@interaction/eagle

Version:
5 lines (4 loc) 171 B
var type = function (val) { return val === null ? 'Null' : val === undefined ? 'Undefined' : Object.prototype.toString.call(val).slice(8, -1); }; module.exports = type;