UNPKG

underscore-es

Version:

javaScript's functional programming helper library for ES6 and beyond.

8 lines (7 loc) 228 B
// `_isObject` : an object's function // ----------------------------------- // Is a given variable an object? export default function (obj) { var type = typeof obj; return type === 'function' || type === 'object' && !!obj; }