UNPKG

forty2

Version:

Collection of libraries that answer the ultimate question to the meaning of life

7 lines (5 loc) 228 B
const typeOf = (target, type) => { let parsedType = Object.prototype.toString.call(target).split(' ')[1].replace(/[\[\]]/g, '').toLowerCase(); return (type) ? parsedType === type : parsedType; }; export default typeOf;