Sha256: 2c20f1253c9c105499a88b204bd4bf35e084c400a1b7309c7a578cb56b9c5b3a
Contents?: true
Size: 267 Bytes
Versions: 53
Compression:
Stored size: 267 Bytes
Contents
// Exports true if environment provides native `Set` implementation, // whatever that is. 'use strict'; module.exports = (function () { if (typeof Set === 'undefined') return false; return (Object.prototype.toString.call(Set.prototype) === '[object Set]'); }());
Version data entries
53 entries across 53 versions & 7 rubygems