Sha256: 18187b43af3f7a3a418d8288e9cc0edf90ee9485d1b74bedfb1fb56ec916d806
Contents?: true
Size: 274 Bytes
Versions: 10
Compression:
Stored size: 274 Bytes
Contents
/*! * isobject <https://github.com/jonschlinkert/isobject> * * Copyright (c) 2014-2015, Jon Schlinkert. * Licensed under the MIT License. */ 'use strict'; module.exports = function isObject(o) { return o != null && typeof o === 'object' && !Array.isArray(o); };
Version data entries
10 entries across 10 versions & 1 rubygems