Sha256: 10310ba86709c8ed27220f96a729eb07eb5245b52612108a2951a1f40748b7bb
Contents?: true
Size: 382 Bytes
Versions: 10
Compression:
Stored size: 382 Bytes
Contents
/*! * isobject <https://github.com/jonschlinkert/isobject> * * Copyright (c) 2014 Jon Schlinkert, contributors. * Licensed under the MIT License */ 'use strict'; /** * is the value an object, and not an array? * * @param {*} `value` * @return {Boolean} */ module.exports = function isObject(o) { return o != null && typeof o === 'object' && !Array.isArray(o); };
Version data entries
10 entries across 10 versions & 1 rubygems