Sha256: 9a663e2f73002dce5add82647cd3a9ce90e2acdfcdc1144dac1fab129b8a4c28
Contents?: true
Size: 246 Bytes
Versions: 19
Compression:
Stored size: 246 Bytes
Contents
export default function isObject(input) { // IE8 will treat undefined and null as object if it wasn't for // input != null return ( input != null && Object.prototype.toString.call(input) === '[object Object]' ); }
Version data entries
19 entries across 19 versions & 1 rubygems