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