Sha256: 78dcf5902c367695ef04e9c3488716030f8a8a2cac03afa5fd6ef5f6c3cea44d
Contents?: true
Size: 399 Bytes
Versions: 51
Compression:
Stored size: 399 Bytes
Contents
'use strict'; var toString = Object.prototype.toString , toStringTagSymbol = require('es6-symbol').toStringTag , id = '[object Set]' , Global = (typeof Set === 'undefined') ? null : Set; module.exports = function (x) { return (x && ((Global && ((x instanceof Global) || (x === Global.prototype))) || (toString.call(x) === id) || (x[toStringTagSymbol] === 'Set'))) || false; };
Version data entries
51 entries across 51 versions & 6 rubygems