UNPKG

bbo

Version:

bbo is a utility library of zero dependencies for javascript.

6 lines (3 loc) 149 B
'use strict'; var getType = v => v === undefined ? 'undefined' : v === null ? 'null' : v.constructor.name.toLowerCase(); module.exports = getType;