Sha256: c6afa373b9f669009cc905cceb57f1ddfbb4a1805c91bcd0d8aa3341ba220374
Contents?: true
Size: 267 Bytes
Versions: 2
Compression:
Stored size: 267 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(Map.prototype) === '[object Map]'); }());
Version data entries
2 entries across 2 versions & 1 rubygems