UNPKG

bbo

Version:

bbo is a utility library of zero dependencies for javascript.

9 lines (7 loc) 169 B
/** * is typeof type */ var isTypeof = (val, type) => { return Object.prototype.toString.call(val).slice(8, -1).toLowerCase() === type; }; export default isTypeof;