UNPKG

isobject

Version:

Returns true if the value is an object and not an array or null.

15 lines (11 loc) 298 B
'use strict'; /*! * isobject <https://github.com/jonschlinkert/isobject> * * Copyright (c) 2014-2017, Jon Schlinkert. * Released under the MIT License. */ function isObject(val) { return val != null && typeof val === 'object' && Array.isArray(val) === false; } module.exports = isObject;