UNPKG

bbo

Version:

bbo is a utility library of zero dependencies for javascript.

9 lines (6 loc) 170 B
'use strict'; function isObject(value) { var type = typeof value; return value !== null && (type === 'object' || type === 'function'); } module.exports = isObject;