Sha256: 4dbe15bd893ebdda67d1a71e94c6b7484a7f486d29fecea28544405628a2d7be
Contents?: true
Size: 254 Bytes
Versions: 56
Compression:
Stored size: 254 Bytes
Contents
'use strict'; module.exports = function (x) { if (!x) return false; if (typeof x === 'symbol') return true; if (!x.constructor) return false; if (x.constructor.name !== 'Symbol') return false; return (x[x.constructor.toStringTag] === 'Symbol'); };
Version data entries
56 entries across 55 versions & 7 rubygems