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