Sha256: fb4ec354479c2ffd9b89bfff5feee2e2915f2d72fb81bbec3a9e5edee0b2edb3
Contents?: true
Size: 240 Bytes
Versions: 79
Compression:
Stored size: 240 Bytes
Contents
export function isArray(obj) { return Object.prototype.toString.call(obj) === "[object Array]" } // Checks if an object has a property. export function has(obj, propName) { return Object.prototype.hasOwnProperty.call(obj, propName) }
Version data entries
79 entries across 68 versions & 13 rubygems