Socket
Socket
Sign inDemoInstall

es6-map

Package Overview
Dependencies
10
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.0.1 to 0.1.0

lib/iterator-kinds.js

16

package.json
{
"name": "es6-map",
"version": "0.0.1",
"version": "0.1.0",
"description": "ECMAScript6 Map polyfill",

@@ -21,17 +21,17 @@ "author": "Mariusz Nowak <medyk@medikoo.com> (http://www.medikoo.com/)",

},
"scripts": {
"test": "node ./node_modules/tad/bin/tad"
},
"dependencies": {
"d": "~0.1.1",
"es5-ext": "~0.10.2",
"es6-iterator": "git://github.com/medikoo/es6-iterator.git",
"es6-set": "git://github.com/medikoo/es6-set.git",
"es6-symbol": "git://github.com/medikoo/es6-symbol.git",
"es6-iterator": "~0.1.1",
"es6-set": "0.1.x",
"es6-symbol": "0.1.x",
"event-emitter": "~0.3.1"
},
"devDependencies": {
"tad": "~0.1.21"
"tad": "0.2.x"
},
"scripts": {
"test": "node ./node_modules/tad/bin/tad"
},
"license": "MIT"
}

@@ -13,3 +13,3 @@ 'use strict';

, forOf = require('es6-iterator/for-of')
, Iterator = require('./_iterator')
, Iterator = require('./lib/iterator')
, isNative = require('./is-native-implemented')

@@ -16,0 +16,0 @@

@@ -11,3 +11,3 @@ 'use strict';

, Map = require('../polyfill')
, Iterator = require('./_iterator')
, Iterator = require('../lib/primitive-iterator')

@@ -14,0 +14,0 @@ , call = Function.prototype.call

@@ -24,2 +24,8 @@ # es6-map

### Installation
$ npm install es6-map
To port it to Browser or any other (non CJS) environment, use your favorite CJS bundler. No favorite yet? Try: [Browserify](http://browserify.org/), [Webmake](https://github.com/medikoo/modules-webmake) or [Webpack](http://webpack.github.io/)
#### API

@@ -68,15 +74,4 @@

### Installation
#### NPM
In your project path:
$ npm install es6-map
##### Browser
You can easily bundle _es6-map_ for browser with [modules-webmake](https://github.com/medikoo/modules-webmake)
## Tests [![Build Status](https://travis-ci.org/medikoo/es6-map.png)](https://travis-ci.org/medikoo/es6-map)
$ npm test
'use strict';
var aFrom = require('es5-ext/array/from')
, toArray = require('es6-iterator/to-array');
, toArray = require('es5-ext/array/to-array');

@@ -6,0 +6,0 @@ module.exports = function (T, a) {

@@ -5,3 +5,3 @@ 'use strict';

, getIterator = require('es6-iterator/get')
, toArray = require('es6-iterator/to-array');
, toArray = require('es5-ext/array/to-array');

@@ -8,0 +8,0 @@ module.exports = function (T, a) {

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc