All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.internals.map-helpers.js Maven / Gradle / Ivy

The newest version!
'use strict';
var getBuiltIn = require('../internals/get-built-in');
var caller = require('../internals/caller');

var Map = getBuiltIn('Map');

module.exports = {
  Map: Map,
  set: caller('set', 2),
  get: caller('get', 1),
  has: caller('has', 1),
  remove: caller('delete', 1),
  proto: Map.prototype
};




© 2015 - 2024 Weber Informatics LLC | Privacy Policy