map-tojson
Version:
ES7 Proposal: Map#toJSON https://github.com/DavidBruant/Map-Set.prototype.toJSON
14 lines (10 loc) • 307 B
JavaScript
var GetIntrinsic = require('es-abstract/GetIntrinsic');
var $Map = GetIntrinsic('%Map%', true);
var implementation = require('./implementation');
module.exports = function getPolyfill() {
if (!$Map || !$Map.prototype.toJSON) {
return implementation;
}
return $Map.prototype.toJSON;
};
;