{"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"keywords":["ES3","ECMAScript 3","ES5","ECMAScript 5","ES6","ES2015","ECMAScript 6","ECMAScript 2015","ES7","ES2016","ECMAScript 7","ECMAScript 2016","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","TypedArray","setImmediate","Dict","polyfill","shim"],"dist-tags":{"latest":"2.5.0","alpha":"2.0.0-alpha","beta":"2.0.0-beta.2"},"description":"Standard library","readme":"# core-js\n\n[![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/zloirock/core-js?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) [![version](https://img.shields.io/npm/v/core-js.svg)](https://www.npmjs.com/package/core-js) [![npm downloads](https://img.shields.io/npm/dm/core-js.svg)](http://npm-stat.com/charts.html?package=core-js&author=&from=2014-11-18) [![Build Status](https://travis-ci.org/zloirock/core-js.svg)](https://travis-ci.org/zloirock/core-js) [![devDependency status](https://david-dm.org/zloirock/core-js/dev-status.svg)](https://david-dm.org/zloirock/core-js?type=dev)\n#### As advertising: the author is looking for a good job :)\n\nModular standard library for JavaScript. Includes polyfills for [ECMAScript 5](#ecmascript-5), [ECMAScript 6](#ecmascript-6): [promises](#ecmascript-6-promise), [symbols](#ecmascript-6-symbol), [collections](#ecmascript-6-collections), iterators, [typed arrays](#ecmascript-6-typed-arrays), [ECMAScript 7+ proposals](#ecmascript-7-proposals), [setImmediate](#setimmediate), etc. Some additional features such as [dictionaries](#dict) or [extended partial application](#partial-application). You can require only needed features or use it without global namespace pollution.\n\n[*Example*](http://goo.gl/a2xexl):\n```js\nArray.from(new Set([1, 2, 3, 2, 1]));          // => [1, 2, 3]\n'*'.repeat(10);                                // => '**********'\nPromise.resolve(32).then(x => console.log(x)); // => 32\nsetImmediate(x => console.log(x), 42);         // => 42\n```\n\n[*Without global namespace pollution*](http://goo.gl/paOHb0):\n```js\nvar core = require('core-js/library'); // With a modular system, otherwise use global `core`\ncore.Array.from(new core.Set([1, 2, 3, 2, 1]));     // => [1, 2, 3]\ncore.String.repeat('*', 10);                        // => '**********'\ncore.Promise.resolve(32).then(x => console.log(x)); // => 32\ncore.setImmediate(x => console.log(x), 42);         // => 42\n```\n\n### Index\n- [Usage](#usage)\n  - [Basic](#basic)\n  - [CommonJS](#commonjs)\n  - [Custom build](#custom-build-from-the-command-line)\n- [Supported engines](#supported-engines)\n- [Features](#features)\n  - [ECMAScript 5](#ecmascript-5)\n  - [ECMAScript 6](#ecmascript-6)\n    - [ECMAScript 6: Object](#ecmascript-6-object)\n    - [ECMAScript 6: Function](#ecmascript-6-function)\n    - [ECMAScript 6: Array](#ecmascript-6-array)\n    - [ECMAScript 6: String](#ecmascript-6-string)\n    - [ECMAScript 6: RegExp](#ecmascript-6-regexp)\n    - [ECMAScript 6: Number](#ecmascript-6-number)\n    - [ECMAScript 6: Math](#ecmascript-6-math)\n    - [ECMAScript 6: Date](#ecmascript-6-date)\n    - [ECMAScript 6: Promise](#ecmascript-6-promise)\n    - [ECMAScript 6: Symbol](#ecmascript-6-symbol)\n    - [ECMAScript 6: Collections](#ecmascript-6-collections)\n    - [ECMAScript 6: Typed Arrays](#ecmascript-6-typed-arrays)\n    - [ECMAScript 6: Reflect](#ecmascript-6-reflect)\n  - [ECMAScript 7+ proposals](#ecmascript-7-proposals)\n    - [stage 4 proposals](#stage-4-proposals)\n    - [stage 3 proposals](#stage-3-proposals)\n    - [stage 2 proposals](#stage-2-proposals)\n    - [stage 1 proposals](#stage-1-proposals)\n    - [stage 0 proposals](#stage-0-proposals)\n    - [pre-stage 0 proposals](#pre-stage-0-proposals)\n  - [Web standards](#web-standards)\n    - [setTimeout / setInterval](#settimeout--setinterval)\n    - [setImmediate](#setimmediate)\n    - [iterable DOM collections](#iterable-dom-collections)\n  - [Non-standard](#non-standard)\n    - [Object](#object)\n    - [Dict](#dict)\n    - [partial application](#partial-application)\n    - [Number Iterator](#number-iterator)\n    - [escaping strings](#escaping-strings)\n    - [delay](#delay)\n    - [helpers for iterators](#helpers-for-iterators)\n- [Missing polyfills](#missing-polyfills)\n- [Changelog](./CHANGELOG.md)\n\n## Usage\n### Basic\n```\nnpm i core-js\nbower install core.js\n```\n\n```js\n// Default\nrequire('core-js');\n// Without global namespace pollution\nvar core = require('core-js/library');\n// Shim only\nrequire('core-js/shim');\n```\nIf you need complete build for browser, use builds from `core-js/client` path:  \n\n* [default](https://raw.githack.com/zloirock/core-js/v2.5.0/client/core.min.js): Includes all features, standard and non-standard.\n* [as a library](https://raw.githack.com/zloirock/core-js/v2.5.0/client/library.min.js): Like \"default\", but does not pollute the global namespace (see [2nd example at the top](#core-js)).\n* [shim only](https://raw.githack.com/zloirock/core-js/v2.5.0/client/shim.min.js): Only includes the standard methods.\n\nWarning: if you use `core-js` with the extension of native objects, require all needed `core-js` modules at the beginning of entry point of your application, otherwise, conflicts may occur.\n\n### CommonJS\nYou can require only needed modules.\n\n```js\nrequire('core-js/fn/set');\nrequire('core-js/fn/array/from');\nrequire('core-js/fn/array/find-index');\nArray.from(new Set([1, 2, 3, 2, 1])); // => [1, 2, 3]\n[1, 2, NaN, 3, 4].findIndex(isNaN);   // => 2\n\n// or, w/o global namespace pollution:\n\nvar Set       = require('core-js/library/fn/set');\nvar from      = require('core-js/library/fn/array/from');\nvar findIndex = require('core-js/library/fn/array/find-index');\nfrom(new Set([1, 2, 3, 2, 1]));      // => [1, 2, 3]\nfindIndex([1, 2, NaN, 3, 4], isNaN); // => 2\n```\nAvailable entry points for methods / constructors, as above examples, and namespaces: for example, `core-js/es6/array` (`core-js/library/es6/array`) contains all [ES6 `Array` features](#ecmascript-6-array), `core-js/es6` (`core-js/library/es6`) contains all ES6 features.\n\n##### Caveats when using CommonJS API:\n\n* `modules` path is internal API, does not inject all required dependencies and can be changed in minor or patch releases. Use it only for a custom build and / or if you know what are you doing.\n* `core-js` is extremely modular and uses a lot of very tiny modules, because of that for usage in browsers bundle up `core-js` instead of usage loader for each file, otherwise, you will have hundreds of requests.\n\n#### CommonJS and prototype methods without global namespace pollution\nIn the `library` version, we can't pollute prototypes of native constructors. Because of that, prototype methods transformed to static methods like in examples above. `babel` `runtime` transformer also can't transform them. But with transpilers we can use one more trick - [bind operator and virtual methods](https://github.com/zenparsing/es-function-bind). Special for that, available `/virtual/` entry points. Example:\n```js\nimport fill from 'core-js/library/fn/array/virtual/fill';\nimport findIndex from 'core-js/library/fn/array/virtual/find-index';\n\nArray(10)::fill(0).map((a, b) => b * b)::findIndex(it => it && !(it % 8)); // => 4\n\n// or\n\nimport {fill, findIndex} from 'core-js/library/fn/array/virtual';\n\nArray(10)::fill(0).map((a, b) => b * b)::findIndex(it => it && !(it % 8)); // => 4\n\n```\n\n### Custom build (from the command-line)\n```\nnpm i core-js && cd node_modules/core-js && npm i\nnpm run grunt build:core.dict,es6 -- --blacklist=es6.promise,es6.math --library=on --path=custom uglify\n```\nWhere `core.dict` and `es6` are modules (namespaces) names, which will be added to the build, `es6.promise` and `es6.math` are modules (namespaces) names, which will be excluded from the build, `--library=on` is flag for build without global namespace pollution and `custom` is target file name.\n\nAvailable namespaces: for example, `es6.array` contains [ES6 `Array` features](#ecmascript-6-array), `es6` contains all modules whose names start with `es6`.\n\n### Custom build (from external scripts)\n\n[`core-js-builder`](https://www.npmjs.com/package/core-js-builder) package exports a function that takes the same parameters as the `build` target from the previous section. This will conditionally include or exclude certain parts of `core-js`:\n\n```js\nrequire('core-js-builder')({\n  modules: ['es6', 'core.dict'], // modules / namespaces\n  blacklist: ['es6.reflect'],    // blacklist of modules / namespaces, by default - empty list\n  library: false,                // flag for build without global namespace pollution, by default - false\n  umd: true                      // use UMD wrapper for export `core` object, by default - true\n}).then(code => {\n  // ...\n}).catch(error => {\n  // ...\n});\n```\n## Supported engines\n**Tested in:**\n- Chrome 26+\n- Firefox 4+\n- Safari 5+\n- Opera 12+\n- Internet Explorer 6+ (sure, IE8- with ES3 limitations)\n- Edge\n- Android Browser 2.3+\n- iOS Safari 5.1+\n- PhantomJS 1.9 / 2.1\n- NodeJS 0.8+\n\n...and it doesn't mean `core-js` will not work in other engines, they just have not been tested.\n\n## Features:\n[*CommonJS entry points:*](#commonjs)\n```\ncore-js(/library)       <- all features\ncore-js(/library)/shim  <- only polyfills\n```\n### ECMAScript 5\nAll features moved to the [`es6` namespace](#ecmascript-6), here just a list of features:\n```js\nObject\n  .create(proto | null, descriptors?)    -> object\n  .getPrototypeOf(object)                -> proto | null\n  .defineProperty(target, key, desc)     -> target, cap for ie8-\n  .defineProperties(target, descriptors) -> target, cap for ie8-\n  .getOwnPropertyDescriptor(object, key) -> desc\n  .getOwnPropertyNames(object)           -> array\n  .keys(object)                          -> array\n  .seal(object)                          -> object, cap for ie8-\n  .freeze(object)                        -> object, cap for ie8-\n  .preventExtensions(object)             -> object, cap for ie8-\n  .isSealed(object)                      -> bool, cap for ie8-\n  .isFrozen(object)                      -> bool, cap for ie8-\n  .isExtensible(object)                  -> bool, cap for ie8-\nArray\n  .isArray(var)                                -> bool\n  #slice(start?, end?)                         -> array, fix for ie7-\n  #join(string = ',')                          -> string, fix for ie7-\n  #indexOf(var, from?)                         -> int\n  #lastIndexOf(var, from?)                     -> int\n  #every(fn(val, index, @), that)              -> bool\n  #some(fn(val, index, @), that)               -> bool\n  #forEach(fn(val, index, @), that)            -> void\n  #map(fn(val, index, @), that)                -> array\n  #filter(fn(val, index, @), that)             -> array\n  #reduce(fn(memo, val, index, @), memo?)      -> var\n  #reduceRight(fn(memo, val, index, @), memo?) -> var\n  #sort(fn?)                                   -> @, fixes for some engines\nFunction\n  #bind(object, ...args) -> boundFn(...args)\nString\n  #split(separator, limit) -> array\n  #trim()                  -> str\nRegExp\n  #toString() -> str\nNumber\n  #toFixed(digits)        -> string\n  #toPrecision(precision) -> string\nparseInt(str, radix) -> int\nparseFloat(str)      -> num\nDate\n  .now()         -> int\n  #toISOString() -> string\n  #toJSON()      -> string\n```\n[*CommonJS entry points:*](#commonjs)\n```\ncore-js(/library)/es5\n```\n\n### ECMAScript 6\n[*CommonJS entry points:*](#commonjs)\n```\ncore-js(/library)/es6\n```\n#### ECMAScript 6: Object\nModules [`es6.object.assign`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.object.assign.js), [`es6.object.is`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.object.is.js), [`es6.object.set-prototype-of`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.object.set-prototype-of.js) and [`es6.object.to-string`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.object.to-string.js).\n\nIn ES6 most `Object` static methods should work with primitives. Modules [`es6.object.freeze`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.object.freeze.js), [`es6.object.seal`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.object.seal.js), [`es6.object.prevent-extensions`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.object.prevent-extensions.js), [`es6.object.is-frozen`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.object.is-frozen.js), [`es6.object.is-sealed`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.object.is-sealed.js), [`es6.object.is-extensible`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.object.is-extensible.js), [`es6.object.get-own-property-descriptor`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.object.get-own-property-descriptor.js), [`es6.object.get-prototype-of`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.object.get-prototype-of.js), [`es6.object.keys`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.object.keys.js) and [`es6.object.get-own-property-names`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.object.get-own-property-names.js).\n\nJust ES5 features: [`es6.object.create`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.object.create.js), [`es6.object.define-property`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.object.define-property.js) and [`es6.object.define-properties`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.object.es6.object.define-properties.js).\n```js\nObject\n  .assign(target, ...src)                -> target\n  .is(a, b)                              -> bool\n  .setPrototypeOf(target, proto | null)  -> target (required __proto__ - IE11+)\n  .create(object | null, descriptors?)   -> object\n  .getPrototypeOf(var)                   -> object | null\n  .defineProperty(object, key, desc)     -> target\n  .defineProperties(object, descriptors) -> target\n  .getOwnPropertyDescriptor(var, key)    -> desc | undefined\n  .keys(var)                             -> array\n  .getOwnPropertyNames(var)              -> array\n  .freeze(var)                           -> var\n  .seal(var)                             -> var\n  .preventExtensions(var)                -> var\n  .isFrozen(var)                         -> bool\n  .isSealed(var)                         -> bool\n  .isExtensible(var)                     -> bool\n  #toString()                            -> string, ES6 fix: @@toStringTag support\n```\n[*CommonJS entry points:*](#commonjs)\n```\ncore-js(/library)/es6/object\ncore-js(/library)/fn/object/assign\ncore-js(/library)/fn/object/is\ncore-js(/library)/fn/object/set-prototype-of\ncore-js(/library)/fn/object/get-prototype-of\ncore-js(/library)/fn/object/create\ncore-js(/library)/fn/object/define-property\ncore-js(/library)/fn/object/define-properties\ncore-js(/library)/fn/object/get-own-property-descriptor\ncore-js(/library)/fn/object/keys\ncore-js(/library)/fn/object/get-own-property-names\ncore-js(/library)/fn/object/freeze\ncore-js(/library)/fn/object/seal\ncore-js(/library)/fn/object/prevent-extensions\ncore-js(/library)/fn/object/is-frozen\ncore-js(/library)/fn/object/is-sealed\ncore-js(/library)/fn/object/is-extensible\ncore-js/fn/object/to-string\n```\n[*Examples*](http://goo.gl/ywdwPz):\n```js\nvar foo = {q: 1, w: 2}\n  , bar = {e: 3, r: 4}\n  , baz = {t: 5, y: 6};\nObject.assign(foo, bar, baz); // => foo = {q: 1, w: 2, e: 3, r: 4, t: 5, y: 6}\n\nObject.is(NaN, NaN); // => true\nObject.is(0, -0);    // => false\nObject.is(42, 42);   // => true\nObject.is(42, '42'); // => false\n\nfunction Parent(){}\nfunction Child(){}\nObject.setPrototypeOf(Child.prototype, Parent.prototype);\nnew Child instanceof Child;  // => true\nnew Child instanceof Parent; // => true\n\nvar O = {};\nO[Symbol.toStringTag] = 'Foo';\n'' + O; // => '[object Foo]'\n\nObject.keys('qwe'); // => ['0', '1', '2']\nObject.getPrototypeOf('qwe') === String.prototype; // => true\n```\n#### ECMAScript 6: Function\nModules [`es6.function.name`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.function.name.js), [`es6.function.has-instance`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.function.has-instance.js). Just ES5: [`es6.function.bind`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.function.bind.js).\n```js\nFunction\n  #bind(object, ...args) -> boundFn(...args)\n  #name                  -> string (IE9+)\n  #@@hasInstance(var)    -> bool\n```\n[*CommonJS entry points:*](#commonjs)\n```\ncore-js/es6/function\ncore-js/fn/function/name\ncore-js/fn/function/has-instance\ncore-js/fn/function/bind\ncore-js/fn/function/virtual/bind\n```\n[*Example*](http://goo.gl/zqu3Wp):\n```js\n(function foo(){}).name // => 'foo'\n\nconsole.log.bind(console, 42)(43); // => 42 43\n```\n#### ECMAScript 6: Array\nModules [`es6.array.from`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.array.from.js), [`es6.array.of`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.array.of.js), [`es6.array.copy-within`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.array.copy-within.js), [`es6.array.fill`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.array.fill.js), [`es6.array.find`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.array.find.js), [`es6.array.find-index`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.array.find-index.js), [`es6.array.iterator`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.array.iterator.js). ES5 features with fixes: [`es6.array.is-array`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.array.is-array.js), [`es6.array.slice`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.array.slice.js), [`es6.array.join`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.array.join.js), [`es6.array.index-of`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.array.index-of.js), [`es6.array.last-index-of`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.array.last-index-of.js), [`es6.array.every`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.array.every.js), [`es6.array.some`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.array.some.js), [`es6.array.for-each`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.array.for-each.js), [`es6.array.map`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.array.map.js), [`es6.array.filter`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.array.filter.js), [`es6.array.reduce`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.array.reduce.js), [`es6.array.reduce-right`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.array.reduce-right.js), [`es6.array.sort`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.array.sort.js).\n```js\nArray\n  .from(iterable | array-like, mapFn(val, index)?, that) -> array\n  .of(...args)                                           -> array\n  .isArray(var)                                          -> bool\n  #copyWithin(target = 0, start = 0, end = @length)      -> @\n  #fill(val, start = 0, end = @length)                   -> @\n  #find(fn(val, index, @), that)                         -> val\n  #findIndex(fn(val, index, @), that)                    -> index | -1\n  #values()                                              -> iterator\n  #keys()                                                -> iterator\n  #entries()                                             -> iterator\n  #join(string = ',')                                    -> string, fix for ie7-\n  #slice(start?, end?)                                   -> array, fix for ie7-\n  #indexOf(var, from?)                                   -> index | -1\n  #lastIndexOf(var, from?)                               -> index | -1\n  #every(fn(val, index, @), that)                        -> bool\n  #some(fn(val, index, @), that)                         -> bool\n  #forEach(fn(val, index, @), that)                      -> void\n  #map(fn(val, index, @), that)                          -> array\n  #filter(fn(val, index, @), that)                       -> array\n  #reduce(fn(memo, val, index, @), memo?)                -> var\n  #reduceRight(fn(memo, val, index, @), memo?)           -> var\n  #sort(fn?)                                             -> @, invalid arguments fix\n  #@@iterator()                                          -> iterator (values)\n  #@@unscopables                                         -> object (cap)\nArguments\n  #@@iterator() -> iterator (values, available only in core-js methods)\n```\n[*CommonJS entry points:*](#commonjs)\n```\ncore-js(/library)/es6/array\ncore-js(/library)/fn/array/from\ncore-js(/library)/fn/array/of\ncore-js(/library)/fn/array/is-array\ncore-js(/library)/fn/array/iterator\ncore-js(/library)/fn/array/copy-within\ncore-js(/library)/fn/array/fill\ncore-js(/library)/fn/array/find\ncore-js(/library)/fn/array/find-index\ncore-js(/library)/fn/array/values\ncore-js(/library)/fn/array/keys\ncore-js(/library)/fn/array/entries\ncore-js(/library)/fn/array/slice\ncore-js(/library)/fn/array/join\ncore-js(/library)/fn/array/index-of\ncore-js(/library)/fn/array/last-index-of\ncore-js(/library)/fn/array/every\ncore-js(/library)/fn/array/some\ncore-js(/library)/fn/array/for-each\ncore-js(/library)/fn/array/map\ncore-js(/library)/fn/array/filter\ncore-js(/library)/fn/array/reduce\ncore-js(/library)/fn/array/reduce-right\ncore-js(/library)/fn/array/sort\ncore-js(/library)/fn/array/virtual/iterator\ncore-js(/library)/fn/array/virtual/copy-within\ncore-js(/library)/fn/array/virtual/fill\ncore-js(/library)/fn/array/virtual/find\ncore-js(/library)/fn/array/virtual/find-index\ncore-js(/library)/fn/array/virtual/values\ncore-js(/library)/fn/array/virtual/keys\ncore-js(/library)/fn/array/virtual/entries\ncore-js(/library)/fn/array/virtual/slice\ncore-js(/library)/fn/array/virtual/join\ncore-js(/library)/fn/array/virtual/index-of\ncore-js(/library)/fn/array/virtual/last-index-of\ncore-js(/library)/fn/array/virtual/every\ncore-js(/library)/fn/array/virtual/some\ncore-js(/library)/fn/array/virtual/for-each\ncore-js(/library)/fn/array/virtual/map\ncore-js(/library)/fn/array/virtual/filter\ncore-js(/library)/fn/array/virtual/reduce\ncore-js(/library)/fn/array/virtual/reduce-right\ncore-js(/library)/fn/array/virtual/sort\n```\n[*Examples*](http://goo.gl/oaUFUf):\n```js\nArray.from(new Set([1, 2, 3, 2, 1]));      // => [1, 2, 3]\nArray.from({0: 1, 1: 2, 2: 3, length: 3}); // => [1, 2, 3]\nArray.from('123', Number);                 // => [1, 2, 3]\nArray.from('123', function(it){\n  return it * it;\n});                                        // => [1, 4, 9]\n\nArray.of(1);       // => [1]\nArray.of(1, 2, 3); // => [1, 2, 3]\n\nvar array = ['a', 'b', 'c'];\n\nfor(var val of array)console.log(val);          // => 'a', 'b', 'c'\nfor(var val of array.values())console.log(val); // => 'a', 'b', 'c'\nfor(var key of array.keys())console.log(key);   // => 0, 1, 2\nfor(var [key, val] of array.entries()){\n  console.log(key);                             // => 0, 1, 2\n  console.log(val);                             // => 'a', 'b', 'c'\n}\n\nfunction isOdd(val){\n  return val % 2;\n}\n[4, 8, 15, 16, 23, 42].find(isOdd);      // => 15\n[4, 8, 15, 16, 23, 42].findIndex(isOdd); // => 2\n[4, 8, 15, 16, 23, 42].find(isNaN);      // => undefined\n[4, 8, 15, 16, 23, 42].findIndex(isNaN); // => -1\n\nArray(5).fill(42); // => [42, 42, 42, 42, 42]\n\n[1, 2, 3, 4, 5].copyWithin(0, 3); // => [4, 5, 3, 4, 5]\n```\n#### ECMAScript 6: String\nModules [`es6.string.from-code-point`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.string.from-code-point.js), [`es6.string.raw`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.string.raw.js), [`es6.string.iterator`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.string.iterator.js), [`es6.string.code-point-at`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.string.code-point-at.js), [`es6.string.ends-with`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.string.ends-with.js), [`es6.string.includes`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.string.includes.js), [`es6.string.repeat`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.string.repeat.js), [`es6.string.starts-with`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.string.starts-with.js) and [`es6.string.trim`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.string.trim.js).\n\nAnnex B HTML methods. Ugly, but it's also the part of the spec. Modules [`es6.string.anchor`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.string.anchor.js), [`es6.string.big`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.string.big.js), [`es6.string.blink`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.string.blink.js), [`es6.string.bold`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.string.bold.js), [`es6.string.fixed`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.string.fixed.js), [`es6.string.fontcolor`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.string.fontcolor.js), [`es6.string.fontsize`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.string.fontsize.js), [`es6.string.italics`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.string.italics.js), [`es6.string.link`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.string.link.js), [`es6.string.small`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.string.small.js), [`es6.string.strike`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.string.strike.js), [`es6.string.sub`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.string.sub.js) and [`es6.string.sup`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.string.sup.js).\n```js\nString\n  .fromCodePoint(...codePoints) -> str\n  .raw({raw}, ...substitutions) -> str\n  #includes(str, from?) -> bool\n  #startsWith(str, from?) -> bool\n  #endsWith(str, from?) -> bool\n  #repeat(num) -> str\n  #codePointAt(pos) -> uint\n  #trim() -> str, ES6 fix\n  #anchor(name)     -> str\n  #big()            -> str\n  #blink()          -> str\n  #bold()           -> str\n  #fixed()          -> str\n  #fontcolor(color) -> str\n  #fontsize(size)   -> str\n  #italics()        -> str\n  #link(url)        -> str\n  #small()          -> str\n  #strike()         -> str\n  #sub()            -> str\n  #sup()            -> str\n  #@@iterator() -> iterator (code points)\n```\n[*CommonJS entry points:*](#commonjs)\n```\ncore-js(/library)/es6/string\ncore-js(/library)/fn/string/from-code-point\ncore-js(/library)/fn/string/raw\ncore-js(/library)/fn/string/includes\ncore-js(/library)/fn/string/starts-with\ncore-js(/library)/fn/string/ends-with\ncore-js(/library)/fn/string/repeat\ncore-js(/library)/fn/string/code-point-at\ncore-js(/library)/fn/string/trim\ncore-js(/library)/fn/string/anchor\ncore-js(/library)/fn/string/big\ncore-js(/library)/fn/string/blink\ncore-js(/library)/fn/string/bold\ncore-js(/library)/fn/string/fixed\ncore-js(/library)/fn/string/fontcolor\ncore-js(/library)/fn/string/fontsize\ncore-js(/library)/fn/string/italics\ncore-js(/library)/fn/string/link\ncore-js(/library)/fn/string/small\ncore-js(/library)/fn/string/strike\ncore-js(/library)/fn/string/sub\ncore-js(/library)/fn/string/sup\ncore-js(/library)/fn/string/iterator\ncore-js(/library)/fn/string/virtual/includes\ncore-js(/library)/fn/string/virtual/starts-with\ncore-js(/library)/fn/string/virtual/ends-with\ncore-js(/library)/fn/string/virtual/repeat\ncore-js(/library)/fn/string/virtual/code-point-at\ncore-js(/library)/fn/string/virtual/trim\ncore-js(/library)/fn/string/virtual/anchor\ncore-js(/library)/fn/string/virtual/big\ncore-js(/library)/fn/string/virtual/blink\ncore-js(/library)/fn/string/virtual/bold\ncore-js(/library)/fn/string/virtual/fixed\ncore-js(/library)/fn/string/virtual/fontcolor\ncore-js(/library)/fn/string/virtual/fontsize\ncore-js(/library)/fn/string/virtual/italics\ncore-js(/library)/fn/string/virtual/link\ncore-js(/library)/fn/string/virtual/small\ncore-js(/library)/fn/string/virtual/strike\ncore-js(/library)/fn/string/virtual/sub\ncore-js(/library)/fn/string/virtual/sup\ncore-js(/library)/fn/string/virtual/iterator\n```\n[*Examples*](http://goo.gl/3UaQ93):\n```js\nfor(var val of 'a𠮷b'){\n  console.log(val); // => 'a', '𠮷', 'b'\n}\n\n'foobarbaz'.includes('bar');      // => true\n'foobarbaz'.includes('bar', 4);   // => false\n'foobarbaz'.startsWith('foo');    // => true\n'foobarbaz'.startsWith('bar', 3); // => true\n'foobarbaz'.endsWith('baz');      // => true\n'foobarbaz'.endsWith('bar', 6);   // => true\n\n'string'.repeat(3); // => 'stringstringstring'\n\n'𠮷'.codePointAt(0); // => 134071\nString.fromCodePoint(97, 134071, 98); // => 'a𠮷b'\n\nvar name = 'Bob';\nString.raw`Hi\\n${name}!`;           // => 'Hi\\\\nBob!' (ES6 template string syntax)\nString.raw({raw: 'test'}, 0, 1, 2); // => 't0e1s2t'\n\n'foo'.bold();                     // => '<b>foo</b>'\n'bar'.anchor('a\"b');              // => '<a name=\"a&quot;b\">bar</a>'\n'baz'.link('http://example.com'); // => '<a href=\"http://example.com\">baz</a>'\n```\n#### ECMAScript 6: RegExp\nModules [`es6.regexp.constructor`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.regexp.constructor.js) and [`es6.regexp.flags`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.regexp.flags.js).\n\nSupport well-known [symbols](#ecmascript-6-symbol) `@@match`, `@@replace`, `@@search` and `@@split`, modules [`es6.regexp.match`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.regexp.match.js), [`es6.regexp.replace`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.regexp.replace.js), [`es6.regexp.search`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.regexp.search.js) and [`es6.regexp.split`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.regexp.split.js).\n```\n[new] RegExp(pattern, flags?) -> regexp, ES6 fix: can alter flags (IE9+)\n  #flags -> str (IE9+)\n  #toString() -> str, ES6 fixes\n  #@@match(str)             -> array | null\n  #@@replace(str, replacer) -> string\n  #@@search(str)            -> index\n  #@@split(str, limit)      -> array\nString\n  #match(tpl)             -> var, ES6 fix for support @@match\n  #replace(tpl, replacer) -> var, ES6 fix for support @@replace\n  #search(tpl)            -> var, ES6 fix for support @@search\n  #split(tpl, limit)      -> var, ES6 fix for support @@split, some fixes for old engines\n```\n[*CommonJS entry points:*](#commonjs)\n```\ncore-js/es6/regexp\ncore-js/fn/regexp/constructor\ncore-js(/library)/fn/regexp/flags\ncore-js/fn/regexp/to-string\ncore-js/fn/regexp/match\ncore-js/fn/regexp/replace\ncore-js/fn/regexp/search\ncore-js/fn/regexp/split\n```\n[*Examples*](http://goo.gl/PiJxBD):\n```js\nRegExp(/./g, 'm'); // => /./m\n\n/foo/.flags;    // => ''\n/foo/gim.flags; // => 'gim'\n\n'foo'.match({[Symbol.match]: _ => 1});     // => 1\n'foo'.replace({[Symbol.replace]: _ => 2}); // => 2\n'foo'.search({[Symbol.search]: _ => 3});   // => 3\n'foo'.split({[Symbol.split]: _ => 4});     // => 4\n\nRegExp.prototype.toString.call({source: 'foo', flags: 'bar'}); // => '/foo/bar'\n```\n#### ECMAScript 6: Number\nModule [`es6.number.constructor`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.number.constructor.js). `Number` constructor support binary and octal literals, [*example*](http://goo.gl/jRd6b3):\n```js\nNumber('0b1010101'); // => 85\nNumber('0o7654321'); // => 2054353\n```\nModules [`es6.number.epsilon`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.number.epsilon.js), [`es6.number.is-finite`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.number.is-finite.js), [`es6.number.is-integer`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.number.is-integer.js), [`es6.number.is-nan`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.number.is-nan.js), [`es6.number.is-safe-integer`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.number.is-safe-integer.js), [`es6.number.max-safe-integer`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.number.max-safe-integer.js), [`es6.number.min-safe-integer`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.number.min-safe-integer.js), [`es6.number.parse-float`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.number.parse-float.js), [`es6.number.parse-int`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.number.parse-int.js), [`es6.number.to-fixed`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.number.to-fixed.js), [`es6.number.to-precision`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.number.to-precision.js), [`es6.parse-int`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.parse-int.js), [`es6.parse-float`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.parse-float.js).\n```js\n[new] Number(var)         -> number | number object\n  .isFinite(num)          -> bool\n  .isNaN(num)             -> bool\n  .isInteger(num)         -> bool\n  .isSafeInteger(num)     -> bool\n  .parseFloat(str)        -> num\n  .parseInt(str)          -> int\n  .EPSILON                -> num\n  .MAX_SAFE_INTEGER       -> int\n  .MIN_SAFE_INTEGER       -> int\n  #toFixed(digits)        -> string, fixes\n  #toPrecision(precision) -> string, fixes\nparseFloat(str)           -> num, fixes\nparseInt(str)             -> int, fixes\n```\n[*CommonJS entry points:*](#commonjs)\n```\ncore-js(/library)/es6/number\ncore-js/es6/number/constructor\ncore-js(/library)/fn/number/is-finite\ncore-js(/library)/fn/number/is-nan\ncore-js(/library)/fn/number/is-integer\ncore-js(/library)/fn/number/is-safe-integer\ncore-js(/library)/fn/number/parse-float\ncore-js(/library)/fn/number/parse-int\ncore-js(/library)/fn/number/epsilon\ncore-js(/library)/fn/number/max-safe-integer\ncore-js(/library)/fn/number/min-safe-integer\ncore-js(/library)/fn/number/to-fixed\ncore-js(/library)/fn/number/to-precision\ncore-js(/library)/fn/parse-float\ncore-js(/library)/fn/parse-int\n```\n#### ECMAScript 6: Math\nModules [`es6.math.acosh`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.math.acosh.js), [`es6.math.asinh`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.math.asinh.js), [`es6.math.atanh`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.math.atanh.js), [`es6.math.cbrt`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.math.cbrt.js), [`es6.math.clz32`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.math.clz32.js), [`es6.math.cosh`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.math.cosh.js), [`es6.math.expm1`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.math.expm1.js), [`es6.math.fround`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.math.fround.js), [`es6.math.hypot`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.math.hypot.js), [`es6.math.imul`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.math.imul.js), [`es6.math.log10`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.math.log10.js), [`es6.math.log1p`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.math.log1p.js), [`es6.math.log2`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.math.log2.js), [`es6.math.sign`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.math.sign.js), [`es6.math.sinh`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.math.sinh.js), [`es6.math.tanh`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.math.tanh.js), [`es6.math.trunc`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.math.trunc.js).\n```js\nMath\n  .acosh(num)     -> num\n  .asinh(num)     -> num\n  .atanh(num)     -> num\n  .cbrt(num)      -> num\n  .clz32(num)     -> uint\n  .cosh(num)      -> num\n  .expm1(num)     -> num\n  .fround(num)    -> num\n  .hypot(...args) -> num\n  .imul(num, num) -> int\n  .log1p(num)     -> num\n  .log10(num)     -> num\n  .log2(num)      -> num\n  .sign(num)      -> 1 | -1 | 0 | -0 | NaN\n  .sinh(num)      -> num\n  .tanh(num)      -> num\n  .trunc(num)     -> num\n```\n[*CommonJS entry points:*](#commonjs)\n```\ncore-js(/library)/es6/math\ncore-js(/library)/fn/math/acosh\ncore-js(/library)/fn/math/asinh\ncore-js(/library)/fn/math/atanh\ncore-js(/library)/fn/math/cbrt\ncore-js(/library)/fn/math/clz32\ncore-js(/library)/fn/math/cosh\ncore-js(/library)/fn/math/expm1\ncore-js(/library)/fn/math/fround\ncore-js(/library)/fn/math/hypot\ncore-js(/library)/fn/math/imul\ncore-js(/library)/fn/math/log1p\ncore-js(/library)/fn/math/log10\ncore-js(/library)/fn/math/log2\ncore-js(/library)/fn/math/sign\ncore-js(/library)/fn/math/sinh\ncore-js(/library)/fn/math/tanh\ncore-js(/library)/fn/math/trunc\n```\n#### ECMAScript 6: Date\nModules [`es6.date.to-string`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.date.to-string.js), ES5 features with fixes: [`es6.date.now`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.date.now.js), [`es6.date.to-iso-string`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.date.to-iso-string.js), [`es6.date.to-json`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.date.to-json.js) and [`es6.date.to-primitive`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.date.to-primitive.js).\n```js\nDate\n  .now()               -> int\n  #toISOString()       -> string\n  #toJSON()            -> string\n  #toString()          -> string\n  #@@toPrimitive(hint) -> primitive\n```\n[*CommonJS entry points:*](#commonjs)\n```\ncore-js/es6/date\ncore-js/fn/date/to-string\ncore-js(/library)/fn/date/now\ncore-js(/library)/fn/date/to-iso-string\ncore-js(/library)/fn/date/to-json\ncore-js(/library)/fn/date/to-primitive\n```\n[*Example*](http://goo.gl/haeHLR):\n```js\nnew Date(NaN).toString(); // => 'Invalid Date'\n```\n\n#### ECMAScript 6: Promise\nModule [`es6.promise`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.promise.js).\n```js\nnew Promise(executor(resolve(var), reject(var))) -> promise\n  #then(resolved(var), rejected(var))            -> promise\n  #catch(rejected(var))                          -> promise\n  .resolve(promise | var)                        -> promise\n  .reject(var)                                   -> promise\n  .all(iterable)                                 -> promise\n  .race(iterable)                                -> promise\n```\n[*CommonJS entry points:*](#commonjs)\n```\ncore-js(/library)/es6/promise\ncore-js(/library)/fn/promise\n```\nBasic [*example*](http://goo.gl/vGrtUC):\n```js\nfunction sleepRandom(time){\n  return new Promise(function(resolve, reject){\n    setTimeout(resolve, time * 1e3, 0 | Math.random() * 1e3);\n  });\n}\n\nconsole.log('Run');                    // => Run\nsleepRandom(5).then(function(result){\n  console.log(result);                 // => 869, after 5 sec.\n  return sleepRandom(10);\n}).then(function(result){\n  console.log(result);                 // => 202, after 10 sec.\n}).then(function(){\n  console.log('immediately after');    // => immediately after\n  throw Error('Irror!');\n}).then(function(){\n  console.log('will not be displayed');\n}).catch(x => console.log(x));         // => => Error: Irror!\n```\n`Promise.resolve` and `Promise.reject` [*example*](http://goo.gl/vr8TN3):\n```js\nPromise.resolve(42).then(x => console.log(x)); // => 42\nPromise.reject(42).catch(x => console.log(x)); // => 42\n\nPromise.resolve($.getJSON('/data.json')); // => ES6 promise\n```\n`Promise.all` [*example*](http://goo.gl/RdoDBZ):\n```js\nPromise.all([\n  'foo',\n  sleepRandom(5),\n  sleepRandom(15),\n  sleepRandom(10)             // after 15 sec:\n]).then(x => console.log(x)); // => ['foo', 956, 85, 382]\n```\n`Promise.race` [*example*](http://goo.gl/L8ovkJ):\n```js\nfunction timeLimit(promise, time){\n  return Promise.race([promise, new Promise(function(resolve, reject){\n    setTimeout(reject, time * 1e3, Error('Await > ' + time + ' sec'));\n  })]);\n}\n\ntimeLimit(sleepRandom(5), 10).then(x => console.log(x));   // => 853, after 5 sec.\ntimeLimit(sleepRandom(15), 10).catch(x => console.log(x)); // Error: Await > 10 sec\n```\nECMAScript 7 [async functions](https://tc39.github.io/ecmascript-asyncawait) [example](http://goo.gl/wnQS4j):\n```js\nvar delay = time => new Promise(resolve => setTimeout(resolve, time))\n\nasync function sleepRandom(time){\n  await delay(time * 1e3);\n  return 0 | Math.random() * 1e3;\n};\nasync function sleepError(time, msg){\n  await delay(time * 1e3);\n  throw Error(msg);\n};\n\n(async () => {\n  try {\n    console.log('Run');                // => Run\n    console.log(await sleepRandom(5)); // => 936, after 5 sec.\n    var [a, b, c] = await Promise.all([\n      sleepRandom(5),\n      sleepRandom(15),\n      sleepRandom(10)\n    ]);\n    console.log(a, b, c);              // => 210 445 71, after 15 sec.\n    await sleepError(5, 'Irror!');\n    console.log('Will not be displayed');\n  } catch(e){\n    console.log(e);                    // => Error: 'Irror!', after 5 sec.\n  }\n})();\n```\n\n##### Unhandled rejection tracking\n\nIn Node.js, like in native implementation, available events [`unhandledRejection`](https://nodejs.org/api/process.html#process_event_unhandledrejection) and [`rejectionHandled`](https://nodejs.org/api/process.html#process_event_rejectionhandled):\n```js\nprocess.on('unhandledRejection', (reason, promise) => console.log('unhandled', reason, promise));\nprocess.on('rejectionHandled', (promise) => console.log('handled', promise));\n\nvar p = Promise.reject(42);\n// unhandled 42 [object Promise]\n\nsetTimeout(() => p.catch(_ => _), 1e3);\n// handled [object Promise]\n```\nIn a browser on rejection, by default, you will see notify in the console, or you can add a custom handler and a handler on handling unhandled, [*example*](http://goo.gl/Wozskl):\n```js\nwindow.onunhandledrejection = e => console.log('unhandled', e.reason, e.promise);\nwindow.onrejectionhandled = e => console.log('handled', e.reason, e.promise);\n\nvar p = Promise.reject(42);\n// unhandled 42 [object Promise]\n\nsetTimeout(() => p.catch(_ => _), 1e3);\n// handled 42 [object Promise]\n```\n\n#### ECMAScript 6: Symbol\nModule [`es6.symbol`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.symbol.js).\n```js\nSymbol(description?)  -> symbol\n  .hasInstance        -> @@hasInstance\n  .isConcatSpreadable -> @@isConcatSpreadable\n  .iterator           -> @@iterator\n  .match              -> @@match\n  .replace            -> @@replace\n  .search             -> @@search\n  .species            -> @@species\n  .split              -> @@split\n  .toPrimitive        -> @@toPrimitive\n  .toStringTag        -> @@toStringTag\n  .unscopables        -> @@unscopables\n  .for(key)           -> symbol\n  .keyFor(symbol)     -> key\n  .useSimple()        -> void\n  .useSetter()        -> void\nObject\n  .getOwnPropertySymbols(object) -> array\n```\nAlso wrapped some methods for correct work with `Symbol` polyfill.\n```js\nObject\n  .create(proto | null, descriptors?)    -> object\n  .defineProperty(target, key, desc)     -> target\n  .defineProperties(target, descriptors) -> target\n  .getOwnPropertyDescriptor(var, key)    -> desc | undefined\n  .getOwnPropertyNames(var)              -> array\n  #propertyIsEnumerable(key)             -> bool\nJSON\n  .stringify(target, replacer?, space?) -> string | undefined\n```\n[*CommonJS entry points:*](#commonjs)\n```\ncore-js(/library)/es6/symbol\ncore-js(/library)/fn/symbol\ncore-js(/library)/fn/symbol/has-instance\ncore-js(/library)/fn/symbol/is-concat-spreadable\ncore-js(/library)/fn/symbol/iterator\ncore-js(/library)/fn/symbol/match\ncore-js(/library)/fn/symbol/replace\ncore-js(/library)/fn/symbol/search\ncore-js(/library)/fn/symbol/species\ncore-js(/library)/fn/symbol/split\ncore-js(/library)/fn/symbol/to-primitive\ncore-js(/library)/fn/symbol/to-string-tag\ncore-js(/library)/fn/symbol/unscopables\ncore-js(/library)/fn/symbol/for\ncore-js(/library)/fn/symbol/key-for\n```\n[*Basic example*](http://goo.gl/BbvWFc):\n```js\nvar Person = (function(){\n  var NAME = Symbol('name');\n  function Person(name){\n    this[NAME] = name;\n  }\n  Person.prototype.getName = function(){\n    return this[NAME];\n  };\n  return Person;\n})();\n\nvar person = new Person('Vasya');\nconsole.log(person.getName());          // => 'Vasya'\nconsole.log(person['name']);            // => undefined\nconsole.log(person[Symbol('name')]);    // => undefined, symbols are uniq\nfor(var key in person)console.log(key); // => only 'getName', symbols are not enumerable\n```\n`Symbol.for` & `Symbol.keyFor` [*example*](http://goo.gl/0pdJjX):\n```js\nvar symbol = Symbol.for('key');\nsymbol === Symbol.for('key'); // true\nSymbol.keyFor(symbol);        // 'key'\n```\n[*Example*](http://goo.gl/mKVOQJ) with methods for getting own object keys:\n```js\nvar O = {a: 1};\nObject.defineProperty(O, 'b', {value: 2});\nO[Symbol('c')] = 3;\nObject.keys(O);                  // => ['a']\nObject.getOwnPropertyNames(O);   // => ['a', 'b']\nObject.getOwnPropertySymbols(O); // => [Symbol(c)]\nReflect.ownKeys(O);              // => ['a', 'b', Symbol(c)]\n```\n##### Caveats when using `Symbol` polyfill:\n\n* We can't add new primitive type, `Symbol` returns object.\n* `Symbol.for` and `Symbol.keyFor` can't be shimmed cross-realm.\n* By default, to hide the keys, `Symbol` polyfill defines setter in `Object.prototype`. For this reason, uncontrolled creation of symbols can cause memory leak and the `in` operator is not working correctly with `Symbol` polyfill: `Symbol() in {} // => true`.\n\nYou can disable defining setters in `Object.prototype`. [Example](http://goo.gl/N5UD7J):\n```js\nSymbol.useSimple();\nvar s1 = Symbol('s1')\n  , o1 = {};\no1[s1] = true;\nfor(var key in o1)console.log(key); // => 'Symbol(s1)_t.qamkg9f3q', w/o native Symbol\n\nSymbol.useSetter();\nvar s2 = Symbol('s2')\n  , o2 = {};\no2[s2] = true;\nfor(var key in o2)console.log(key); // nothing\n```\n* Currently, `core-js` not adds setters to `Object.prototype` for well-known symbols for correct work something like `Symbol.iterator in foo`. It can cause problems with their enumerability.\n* Some problems possible with environment exotic objects (for example, IE `localStorage`).\n\n#### ECMAScript 6: Collections\n`core-js` uses native collections in most case, just fixes methods / constructor, if it's required, and in old environment uses fast polyfill (O(1) lookup).\n#### Map\nModule [`es6.map`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.map.js).\n```js\nnew Map(iterable (entries) ?)     -> map\n  #clear()                        -> void\n  #delete(key)                    -> bool\n  #forEach(fn(val, key, @), that) -> void\n  #get(key)                       -> val\n  #has(key)                       -> bool\n  #set(key, val)                  -> @\n  #size                           -> uint\n  #values()                       -> iterator\n  #keys()                         -> iterator\n  #entries()                      -> iterator\n  #@@iterator()                   -> iterator (entries)\n```\n[*CommonJS entry points:*](#commonjs)\n```\ncore-js(/library)/es6/map\ncore-js(/library)/fn/map\n```\n[*Examples*](http://goo.gl/GWR7NI):\n```js\nvar a = [1];\n\nvar map = new Map([['a', 1], [42, 2]]);\nmap.set(a, 3).set(true, 4);\n\nconsole.log(map.size);        // => 4\nconsole.log(map.has(a));      // => true\nconsole.log(map.has([1]));    // => false\nconsole.log(map.get(a));      // => 3\nmap.forEach(function(val, key){\n  console.log(val);           // => 1, 2, 3, 4\n  console.log(key);           // => 'a', 42, [1], true\n});\nmap.delete(a);\nconsole.log(map.size);        // => 3\nconsole.log(map.get(a));      // => undefined\nconsole.log(Array.from(map)); // => [['a', 1], [42, 2], [true, 4]]\n\nvar map = new Map([['a', 1], ['b', 2], ['c', 3]]);\n\nfor(var [key, val] of map){\n  console.log(key);                           // => 'a', 'b', 'c'\n  console.log(val);                           // => 1, 2, 3\n}\nfor(var val of map.values())console.log(val); // => 1, 2, 3\nfor(var key of map.keys())console.log(key);   // => 'a', 'b', 'c'\nfor(var [key, val] of map.entries()){\n  console.log(key);                           // => 'a', 'b', 'c'\n  console.log(val);                           // => 1, 2, 3\n}\n```\n#### Set\nModule [`es6.set`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.set.js).\n```js\nnew Set(iterable?)              -> set\n  #add(key)                     -> @\n  #clear()                      -> void\n  #delete(key)                  -> bool\n  #forEach(fn(el, el, @), that) -> void\n  #has(key)                     -> bool\n  #size                         -> uint\n  #values()                     -> iterator\n  #keys()                       -> iterator\n  #entries()                    -> iterator\n  #@@iterator()                 -> iterator (values)\n```\n[*CommonJS entry points:*](#commonjs)\n```\ncore-js(/library)/es6/set\ncore-js(/library)/fn/set\n```\n[*Examples*](http://goo.gl/bmhLwg):\n```js\nvar set = new Set(['a', 'b', 'a', 'c']);\nset.add('d').add('b').add('e');\nconsole.log(set.size);        // => 5\nconsole.log(set.has('b'));    // => true\nset.forEach(function(it){\n  console.log(it);            // => 'a', 'b', 'c', 'd', 'e'\n});\nset.delete('b');\nconsole.log(set.size);        // => 4\nconsole.log(set.has('b'));    // => false\nconsole.log(Array.from(set)); // => ['a', 'c', 'd', 'e']\n\nvar set = new Set([1, 2, 3, 2, 1]);\n\nfor(var val of set)console.log(val);          // => 1, 2, 3\nfor(var val of set.values())console.log(val); // => 1, 2, 3\nfor(var key of set.keys())console.log(key);   // => 1, 2, 3\nfor(var [key, val] of set.entries()){\n  console.log(key);                           // => 1, 2, 3\n  console.log(val);                           // => 1, 2, 3\n}\n```\n#### WeakMap\nModule [`es6.weak-map`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.weak-map.js).\n```js\nnew WeakMap(iterable (entries) ?) -> weakmap\n  #delete(key)                    -> bool\n  #get(key)                       -> val\n  #has(key)                       -> bool\n  #set(key, val)                  -> @\n```\n[*CommonJS entry points:*](#commonjs)\n```\ncore-js(/library)/es6/weak-map\ncore-js(/library)/fn/weak-map\n```\n[*Examples*](http://goo.gl/SILXyw):\n```js\nvar a = [1]\n  , b = [2]\n  , c = [3];\n\nvar wmap = new WeakMap([[a, 1], [b, 2]]);\nwmap.set(c, 3).set(b, 4);\nconsole.log(wmap.has(a));   // => true\nconsole.log(wmap.has([1])); // => false\nconsole.log(wmap.get(a));   // => 1\nwmap.delete(a);\nconsole.log(wmap.get(a));   // => undefined\n\n// Private properties store:\nvar Person = (function(){\n  var names = new WeakMap;\n  function Person(name){\n    names.set(this, name);\n  }\n  Person.prototype.getName = function(){\n    return names.get(this);\n  };\n  return Person;\n})();\n\nvar person = new Person('Vasya');\nconsole.log(person.getName());          // => 'Vasya'\nfor(var key in person)console.log(key); // => only 'getName'\n```\n#### WeakSet\nModule [`es6.weak-set`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.weak-set.js).\n```js\nnew WeakSet(iterable?) -> weakset\n  #add(key)            -> @\n  #delete(key)         -> bool\n  #has(key)            -> bool\n```\n[*CommonJS entry points:*](#commonjs)\n```\ncore-js(/library)/es6/weak-set\ncore-js(/library)/fn/weak-set\n```\n[*Examples*](http://goo.gl/TdFbEx):\n```js\nvar a = [1]\n  , b = [2]\n  , c = [3];\n\nvar wset = new WeakSet([a, b, a]);\nwset.add(c).add(b).add(c);\nconsole.log(wset.has(b));   // => true\nconsole.log(wset.has([2])); // => false\nwset.delete(b);\nconsole.log(wset.has(b));   // => false\n```\n##### Caveats when using collections polyfill:\n\n* Weak-collections polyfill stores values as hidden properties of keys. It works correct and not leak in most cases. However, it is desirable to store a collection longer than its keys.\n\n#### ECMAScript 6: Typed Arrays\nImplementations and fixes `ArrayBuffer`, `DataView`, typed arrays constructors, static and prototype methods. Typed Arrays work only in environments with support descriptors (IE9+), `ArrayBuffer` and `DataView` should work anywhere.\n\nModules [`es6.typed.array-buffer`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.typed.array-buffer.js), [`es6.typed.data-view`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.typed.data-view.js), [`es6.typed.int8-array`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.typed.int8-array.js), [`es6.typed.uint8-array`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.typed.uint8-array.js), [`es6.typed.uint8-clamped-array`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.typed.uint8-clamped-array.js), [`es6.typed.int16-array`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.typed.int16-array.js), [`es6.typed.uint16-array`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.typed.uint16-array.js), [`es6.typed.int32-array`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.typed.int32-array.js), [`es6.typed.uint32-array`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.typed.uint32-array.js), [`es6.typed.float32-array`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.typed.float32-array.js) and [`es6.typed.float64-array`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.typed.float64-array.js).\n```js\nnew ArrayBuffer(length) -> buffer\n  .isView(var) -> bool\n  #slice(start = 0, end = @length) -> buffer\n  #byteLength -> uint\n\nnew DataView(buffer, byteOffset = 0, byteLength = buffer.byteLength - byteOffset) -> view\n  #getInt8(offset)                          -> int8\n  #getUint8(offset)                         -> uint8\n  #getInt16(offset, littleEndian = false)   -> int16\n  #getUint16(offset, littleEndian = false)  -> uint16\n  #getInt32(offset, littleEndian = false)   -> int32\n  #getUint32(offset, littleEndian = false)  -> uint32\n  #getFloat32(offset, littleEndian = false) -> float32\n  #getFloat64(offset, littleEndian = false) -> float64\n  #setInt8(offset, value)                          -> void\n  #setUint8(offset, value)                         -> void\n  #setInt16(offset, value, littleEndian = false)   -> void\n  #setUint16(offset, value, littleEndian = false)  -> void\n  #setInt32(offset, value, littleEndian = false)   -> void\n  #setUint32(offset, value, littleEndian = false)  -> void\n  #setFloat32(offset, value, littleEndian = false) -> void\n  #setFloat64(offset, value, littleEndian = false) -> void\n  #buffer     -> buffer\n  #byteLength -> uint\n  #byteOffset -> uint\n\n{\n  Int8Array,\n  Uint8Array,\n  Uint8ClampedArray,\n  Int16Array,\n  Uint16Array,\n  Int32Array,\n  Uint32Array,\n  Float32Array,\n  Float64Array\n}\n  new %TypedArray%(length)    -> typed\n  new %TypedArray%(typed)     -> typed\n  new %TypedArray%(arrayLike) -> typed\n  new %TypedArray%(iterable)  -> typed\n  new %TypedArray%(buffer, byteOffset = 0, length = (buffer.byteLength - byteOffset) / @BYTES_PER_ELEMENT) -> typed\n  .BYTES_PER_ELEMENT -> uint\n  .from(arrayLike | iterable, mapFn(val, index)?, that) -> typed\n  .of(...args) -> typed\n  #BYTES_PER_ELEMENT -> uint\n  #copyWithin(target = 0, start = 0, end = @length) -> @\n  #every(fn(val, index, @), that) -> bool\n  #fill(val, start = 0, end = @length) -> @\n  #filter(fn(val, index, @), that) -> typed\n  #find(fn(val, index, @), that) -> val\n  #findIndex(fn(val, index, @), that) -> index\n  #forEach(fn(val, index, @), that) -> void\n  #indexOf(var, from?) -> int\n  #join(string = ',') -> string\n  #lastIndexOf(var, from?) -> int\n  #map(fn(val, index, @), that) -> typed\n  #reduce(fn(memo, val, index, @), memo?) -> var\n  #reduceRight(fn(memo, val, index, @), memo?) -> var\n  #reverse() -> @\n  #set(arrayLike, offset = 0) -> void\n  #slice(start = 0, end = @length) -> typed\n  #some(fn(val, index, @), that) -> bool\n  #sort(fn(a, b)?) -> @\n  #subarray(start = 0, end = @length) -> typed\n  #toString() -> string\n  #toLocaleString() -> string\n  #values()     -> iterator\n  #keys()       -> iterator\n  #entries()    -> iterator\n  #@@iterator() -> iterator (values)\n  #buffer     -> buffer\n  #byteLength -> uint\n  #byteOffset -> uint\n  #length     -> uint\n```\n[*CommonJS entry points:*](#commonjs)\n```\ncore-js(/library)/es6/typed\ncore-js(/library)/fn/typed\ncore-js(/library)/fn/typed/array-buffer\ncore-js(/library)/fn/typed/data-view\ncore-js(/library)/fn/typed/int8-array\ncore-js(/library)/fn/typed/uint8-array\ncore-js(/library)/fn/typed/uint8-clamped-array\ncore-js(/library)/fn/typed/int16-array\ncore-js(/library)/fn/typed/uint16-array\ncore-js(/library)/fn/typed/int32-array\ncore-js(/library)/fn/typed/uint32-array\ncore-js(/library)/fn/typed/float32-array\ncore-js(/library)/fn/typed/float64-array\n```\n[*Examples*](http://goo.gl/yla75z):\n```js\nnew Int32Array(4);                          // => [0, 0, 0, 0]\nnew Uint8ClampedArray([1, 2, 3, 666]);      // => [1, 2, 3, 255]\nnew Float32Array(new Set([1, 2, 3, 2, 1])); // => [1, 2, 3]\n\nvar buffer = new ArrayBuffer(8);\nvar view   = new DataView(buffer);\nview.setFloat64(0, 123.456, true);\nnew Uint8Array(buffer.slice(4)); // => [47, 221, 94, 64]\n\nInt8Array.of(1, 1.5, 5.7, 745);      // => [1, 1, 5, -23]\nUint8Array.from([1, 1.5, 5.7, 745]); // => [1, 1, 5, 233]\n\nvar typed = new Uint8Array([1, 2, 3]);\n\nvar a = typed.slice(1);    // => [2, 3]\ntyped.buffer === a.buffer; // => false\nvar b = typed.subarray(1); // => [2, 3]\ntyped.buffer === b.buffer; // => true\n\ntyped.filter(it => it % 2); // => [1, 3]\ntyped.map(it => it * 1.5);  // => [1, 3, 4]\n\nfor(var val of typed)console.log(val);          // => 1, 2, 3\nfor(var val of typed.values())console.log(val); // => 1, 2, 3\nfor(var key of typed.keys())console.log(key);   // => 0, 1, 2\nfor(var [key, val] of typed.entries()){\n  console.log(key);                             // => 0, 1, 2\n  console.log(val);                             // => 1, 2, 3\n}\n```\n##### Caveats when using typed arrays:\n\n* Typed Arrays polyfills works completely how should work by the spec, but because of internal use getter / setters on each instance, is slow and consumes significant memory. However, typed arrays polyfills required mainly for IE9 (and for `Uint8ClampedArray` in IE10 and early IE11), all modern engines have native typed arrays and requires only constructors fixes and methods.\n* The current version hasn't special entry points for methods, they can be added only with constructors. It can be added in the future.\n* In the `library` version we can't pollute native prototypes, so prototype methods available as constructors static.\n\n#### ECMAScript 6: Reflect\nModules [`es6.reflect.apply`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.reflect.apply.js), [`es6.reflect.construct`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.reflect.construct.js), [`es6.reflect.define-property`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.reflect.define-property.js), [`es6.reflect.delete-property`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.reflect.delete-property.js), [`es6.reflect.enumerate`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.reflect.enumerate.js), [`es6.reflect.get`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.reflect.get.js), [`es6.reflect.get-own-property-descriptor`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.reflect.get-own-property-descriptor.js), [`es6.reflect.get-prototype-of`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.reflect.get-prototype-of.js), [`es6.reflect.has`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.reflect.has.js), [`es6.reflect.is-extensible`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.reflect.is-extensible.js), [`es6.reflect.own-keys`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.reflect.own-keys.js), [`es6.reflect.prevent-extensions`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.reflect.prevent-extensions.js), [`es6.reflect.set`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.reflect.set.js), [`es6.reflect.set-prototype-of`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es6.reflect.set-prototype-of.js).\n```js\nReflect\n  .apply(target, thisArgument, argumentsList) -> var\n  .construct(target, argumentsList, newTarget?) -> object\n  .defineProperty(target, propertyKey, attributes) -> bool\n  .deleteProperty(target, propertyKey) -> bool\n  .enumerate(target) -> iterator (removed from the spec and will be removed from core-js@3)\n  .get(target, propertyKey, receiver?) -> var\n  .getOwnPropertyDescriptor(target, propertyKey) -> desc\n  .getPrototypeOf(target) -> object | null\n  .has(target, propertyKey) -> bool\n  .isExtensible(target) -> bool\n  .ownKeys(target) -> array\n  .preventExtensions(target) -> bool\n  .set(target, propertyKey, V, receiver?) -> bool\n  .setPrototypeOf(target, proto) -> bool (required __proto__ - IE11+)\n```\n[*CommonJS entry points:*](#commonjs)\n```\ncore-js(/library)/es6/reflect\ncore-js(/library)/fn/reflect\ncore-js(/library)/fn/reflect/apply\ncore-js(/library)/fn/reflect/construct\ncore-js(/library)/fn/reflect/define-property\ncore-js(/library)/fn/reflect/delete-property\ncore-js(/library)/fn/reflect/enumerate (deprecated and will be removed from the next major release)\ncore-js(/library)/fn/reflect/get\ncore-js(/library)/fn/reflect/get-own-property-descriptor\ncore-js(/library)/fn/reflect/get-prototype-of\ncore-js(/library)/fn/reflect/has\ncore-js(/library)/fn/reflect/is-extensible\ncore-js(/library)/fn/reflect/own-keys\ncore-js(/library)/fn/reflect/prevent-extensions\ncore-js(/library)/fn/reflect/set\ncore-js(/library)/fn/reflect/set-prototype-of\n```\n[*Examples*](http://goo.gl/gVT0cH):\n```js\nvar O = {a: 1};\nObject.defineProperty(O, 'b', {value: 2});\nO[Symbol('c')] = 3;\nReflect.ownKeys(O); // => ['a', 'b', Symbol(c)]\n\nfunction C(a, b){\n  this.c = a + b;\n}\n\nvar instance = Reflect.construct(C, [20, 22]);\ninstance.c; // => 42\n```\n\n### ECMAScript 7+ proposals\n[The TC39 process.](https://tc39.github.io/process-document/)\n\n[*CommonJS entry points:*](#commonjs)\n```\ncore-js(/library)/es7\ncore-js(/library)/es7/array\ncore-js(/library)/es7/global\ncore-js(/library)/es7/string\ncore-js(/library)/es7/map\ncore-js(/library)/es7/set\ncore-js(/library)/es7/error\ncore-js(/library)/es7/math\ncore-js(/library)/es7/system\ncore-js(/library)/es7/symbol\ncore-js(/library)/es7/reflect\ncore-js(/library)/es7/observable\n```\n`core-js/stage/4` entry point contains only stage 4 proposals, `core-js/stage/3` - stage 3 and stage 4, etc.\n#### Stage 4 proposals\n\n[*CommonJS entry points:*](#commonjs)\n```js\ncore-js(/library)/stage/4\n```\n* `{Array, %TypedArray%}#includes` [proposal](https://github.com/tc39/Array.prototype.includes) - module [`es7.array.includes`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es7.array.includes.js), `%TypedArray%` version in modules from [this section](#ecmascript-6-typed-arrays).\n```js\nArray\n  #includes(var, from?) -> bool\n{\n  Int8Array,\n  Uint8Array,\n  Uint8ClampedArray,\n  Int16Array,\n  Uint16Array,\n  Int32Array,\n  Uint32Array,\n  Float32Array,\n  Float64Array\n}\n  #includes(var, from?) -> bool\n```\n[*CommonJS entry points:*](#commonjs)\n```js\ncore-js(/library)/fn/array/includes\n```\n[*Examples*](http://goo.gl/2Gq4ma):\n```js\n[1, 2, 3].includes(2);        // => true\n[1, 2, 3].includes(4);        // => false\n[1, 2, 3].includes(2, 2);     // => false\n\n[NaN].indexOf(NaN);           // => -1\n[NaN].includes(NaN);          // => true\nArray(1).indexOf(undefined);  // => -1\nArray(1).includes(undefined); // => true\n```\n* `Object.values`, `Object.entries` [proposal](https://github.com/tc39/proposal-object-values-entries) - modules [`es7.object.values`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es7.object.values.js), [`es7.object.entries`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es7.object.entries.js)\n```js\nObject\n  .values(object) -> array\n  .entries(object) -> array\n```\n[*CommonJS entry points:*](#commonjs)\n```js\ncore-js(/library)/fn/object/values\ncore-js(/library)/fn/object/entries\n```\n[*Examples*](http://goo.gl/6kuGOn):\n```js\nObject.values({a: 1, b: 2, c: 3});  // => [1, 2, 3]\nObject.entries({a: 1, b: 2, c: 3}); // => [['a', 1], ['b', 2], ['c', 3]]\n\nfor(let [key, value] of Object.entries({a: 1, b: 2, c: 3})){\n  console.log(key);   // => 'a', 'b', 'c'\n  console.log(value); // => 1, 2, 3\n}\n```\n* `Object.getOwnPropertyDescriptors` [proposal](https://github.com/tc39/proposal-object-getownpropertydescriptors) - module [`es7.object.get-own-property-descriptors`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es7.object.get-own-property-descriptors.js)\n```js\nObject\n  .getOwnPropertyDescriptors(object) -> object\n```\n[*CommonJS entry points:*](#commonjs)\n```js\ncore-js(/library)/fn/object/get-own-property-descriptors\n```\n*Examples*:\n```js\n// Shallow object cloning with prototype and descriptors:\nvar copy = Object.create(Object.getPrototypeOf(O), Object.getOwnPropertyDescriptors(O));\n// Mixin:\nObject.defineProperties(target, Object.getOwnPropertyDescriptors(source));\n```\n* `String#padStart`, `String#padEnd` [proposal](https://github.com/tc39/proposal-string-pad-start-end) - modules [`es7.string.pad-start`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es7.string.pad-start.js), [`es7.string.pad-end`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es7.string.pad-end.js)\n```js\nString\n  #padStart(length, fillStr = ' ') -> string\n  #padEnd(length, fillStr = ' ') -> string\n```\n[*CommonJS entry points:*](#commonjs)\n```js\ncore-js(/library)/fn/string/pad-start\ncore-js(/library)/fn/string/pad-end\ncore-js(/library)/fn/string/virtual/pad-start\ncore-js(/library)/fn/string/virtual/pad-end\n```\n[*Examples*](http://goo.gl/hK5ccv):\n```js\n'hello'.padStart(10);         // => '     hello'\n'hello'.padStart(10, '1234'); // => '12341hello'\n'hello'.padEnd(10);           // => 'hello     '\n'hello'.padEnd(10, '1234');   // => 'hello12341'\n```\n* `Object#__(define|lookup)[GS]etter__`, [annex B ES2017](https://github.com/tc39/ecma262/pull/381), but we haven't special namespace for that - modules [`es7.object.define-setter`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es7.object.define-setter.js), [`es7.object.define-getter`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es7.object.define-getter.js), [`es7.object.lookup-setter`](https://github.com/zloirock/core-js/blob/v2.5.0/modules/es7.object.lookup-setter.js) and [`es7.object.lookup-getter`](https://github.com/zloirock/core-js/blo","repository":{"type":"git","url":"git+https://github.com/zloirock/core-js.git"},"users":{"285858315":true,"h13i32maru":true,"elidiazgt":true,"moimikey":true,"corintho":true,"btd":true,"panlw":true,"randallagordon":true,"iolo":true,"ahmedelgabri":true,"doruk":true,"zloirock":true,"tobiasnickel":true,"program247365":true,"nickeltobias":true,"wkaifang":true,"styxnp":true,"crafterm":true,"wangnan0610":true,"jacobmischka":true,"peter.hewat":true,"rochejul":true,"qqcome110":true,"ajduke":true,"jeandrebosch":true,"wangfei":true,"largepuma":true,"soenkekluth":true,"boto":true,"muroc":true,"mgol":true,"adriancmiranda":true,"dzhou777":true,"monjer":true,"ackolla":true,"seangenabe":true,"yazanrawashdeh":true,"thevikingcoder":true,"retorillo":true,"kevinagin":true,"shangsinian":true,"ognjen.jevremovic":true,"erikvold":true,"xueboren":true,"uptonking":true,"shuoshubao":true,"chinawolf_wyp":true,"bengi":true,"heartnett":true,"frederik_bosch":true,"santhoshbabu":true,"alexxnica":true,"josephst18":true,"lukvonstrom":true,"daniellink":true},"bugs":{"url":"https://github.com/zloirock/core-js/issues"},"license":"MIT","versions":{"0.0.3":{"name":"core-js","version":"0.0.3","repository":{"type":"git","url":"https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"LiveScript":"*","grunt":"*","load-grunt-tasks":"*","grunt-livescript":"*","grunt-contrib-uglify":"*","grunt-contrib-watch":"*"},"bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js","_id":"core-js@0.0.3","dist":{"shasum":"f4e1c0cf19c8c5b287d9b53f91efe0bedecb0c0b","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-0.0.3.tgz"},"_from":".","_npmVersion":"1.3.14","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"directories":{}},"0.0.4":{"name":"core-js","description":"Blahblahblah","version":"0.0.4","repository":{"type":"git","url":"https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"LiveScript":"*","grunt":"*","load-grunt-tasks":"*","grunt-livescript":"*","grunt-contrib-uglify":"*","grunt-contrib-watch":"*"},"bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js","_id":"core-js@0.0.4","dist":{"shasum":"a91325d6a70d70130d7ab69e7dea8bd38fad9426","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-0.0.4.tgz"},"_from":".","_npmVersion":"1.3.14","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"directories":{}},"0.0.5":{"name":"core-js","description":"Blahblahblah","version":"0.0.5","repository":{"type":"git","url":"https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"LiveScript":"*","grunt":"*","load-grunt-tasks":"*","grunt-livescript":"*","grunt-contrib-uglify":"*","grunt-contrib-watch":"*"},"bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js","_id":"core-js@0.0.5","dist":{"shasum":"dbb38b5db672b4e2608e6696e5d3bf3a1bd34623","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-0.0.5.tgz"},"_from":".","_npmVersion":"1.3.14","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"directories":{}},"0.0.7":{"name":"core-js","description":"Standard library","version":"0.0.7","repository":{"type":"git","url":"https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"LiveScript":"*","grunt":"*","load-grunt-tasks":"*","grunt-livescript":"*","grunt-contrib-uglify":"*","grunt-contrib-watch":"*","karma":"*","karma-qunit":"*","karma-chrome-launcher":"*","karma-ie-launcher":"*","karma-firefox-launcher":"*","karma-opera-launcher":"*"},"bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js","_id":"core-js@0.0.7","dist":{"shasum":"6cf89eb404a465daf7a87126c2ce984ca49b06dc","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-0.0.7.tgz"},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"directories":{}},"0.0.8":{"name":"core-js","description":"Standard library","version":"0.0.8","repository":{"type":"git","url":"https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"LiveScript":"*","grunt":"*","load-grunt-tasks":"*","grunt-livescript":"*","grunt-contrib-uglify":"*","grunt-contrib-watch":"*","karma":"*","karma-qunit":"*","karma-chrome-launcher":"*","karma-ie-launcher":"*","karma-firefox-launcher":"*","karma-opera-launcher":"*","promises-aplus-tests":"*"},"scripts":{"promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js","_id":"core-js@0.0.8","_shasum":"536814a9fbc04690dbd9ceafb6a6eabf5dc9c8b1","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"dist":{"shasum":"536814a9fbc04690dbd9ceafb6a6eabf5dc9c8b1","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-0.0.8.tgz"},"directories":{}},"0.0.9":{"name":"core-js","description":"Standard library","version":"0.0.9","repository":{"type":"git","url":"https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"LiveScript":"1.3.x","grunt":"0.4.x","load-grunt-tasks":"0.4.x","grunt-livescript":"0.5.x","grunt-contrib-uglify":"0.4.x","grunt-contrib-watch":"0.6.x","karma":"*","karma-qunit":"*","karma-chrome-launcher":"*","karma-ie-launcher":"*","karma-firefox-launcher":"*","karma-opera-launcher":"*","promises-aplus-tests":"*"},"scripts":{"promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"keywords":["ES6","ECMAScript 6","ES7","ECMAScript 7","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","console"],"gitHead":"c44b5dd25c2a11ce19912ad9a3d5b628567d6e2d","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js","_id":"core-js@0.0.9","_shasum":"2399247cbf247536d7b3383380d93930f4a09afb","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"dist":{"shasum":"2399247cbf247536d7b3383380d93930f4a09afb","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-0.0.9.tgz"},"directories":{}},"0.1.1":{"name":"core-js","description":"Standard library","version":"0.1.1","repository":{"type":"git","url":"https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"LiveScript":"1.3.x","grunt":"0.4.x","load-grunt-tasks":"0.4.x","grunt-livescript":"0.5.x","grunt-contrib-uglify":"0.4.x","grunt-contrib-watch":"0.6.x","karma":"*","karma-qunit":"*","karma-chrome-launcher":"*","karma-ie-launcher":"*","karma-firefox-launcher":"*","karma-opera-launcher":"*","promises-aplus-tests":"*"},"scripts":{"promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"keywords":["ES6","ECMAScript 6","ES7","ECMAScript 7","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","console"],"gitHead":"60e55ff12eadae08f73ecfbacb6d7d57915f9e89","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js","_id":"core-js@0.1.1","_shasum":"114590095d45e4eb514397cde679eae5d76b9f4d","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"dist":{"shasum":"114590095d45e4eb514397cde679eae5d76b9f4d","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-0.1.1.tgz"},"directories":{}},"0.1.2":{"name":"core-js","description":"Standard library","version":"0.1.2","repository":{"type":"git","url":"https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"LiveScript":"1.3.x","grunt":"0.4.x","load-grunt-tasks":"0.4.x","grunt-livescript":"0.5.x","grunt-contrib-uglify":"0.4.x","grunt-contrib-watch":"0.6.x","karma":"*","karma-qunit":"*","karma-chrome-launcher":"*","karma-ie-launcher":"*","karma-firefox-launcher":"*","karma-opera-launcher":"*","promises-aplus-tests":"*"},"scripts":{"promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"keywords":["ES6","ECMAScript 6","ES7","ECMAScript 7","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","console"],"gitHead":"27f8322e2d101f33dc7a98a1d38f67126bd5a86a","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js","_id":"core-js@0.1.2","_shasum":"1bfd6e8d4e6a93e273340e76c5e80d656ca6c0c0","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"dist":{"shasum":"1bfd6e8d4e6a93e273340e76c5e80d656ca6c0c0","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-0.1.2.tgz"},"directories":{}},"0.1.3":{"name":"core-js","description":"Standard library","version":"0.1.3","repository":{"type":"git","url":"https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"LiveScript":"1.3.x","grunt":"0.4.x","load-grunt-tasks":"0.4.x","grunt-livescript":"0.5.x","grunt-contrib-uglify":"0.4.x","grunt-contrib-watch":"0.6.x","karma":"*","karma-qunit":"*","karma-chrome-launcher":"*","karma-ie-launcher":"*","karma-firefox-launcher":"*","karma-opera-launcher":"*","promises-aplus-tests":"*"},"scripts":{"promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"keywords":["ES6","ECMAScript 6","ES7","ECMAScript 7","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","console"],"gitHead":"f2d5df8d272dfeabbecc6ff398530a648bdcab43","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js","_id":"core-js@0.1.3","_shasum":"4965597610e68baf59c431b332fbd7d3d1074acc","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"dist":{"shasum":"4965597610e68baf59c431b332fbd7d3d1074acc","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-0.1.3.tgz"},"directories":{}},"0.1.4":{"name":"core-js","description":"Standard library","version":"0.1.4","repository":{"type":"git","url":"https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"LiveScript":"1.3.x","grunt":"0.4.x","load-grunt-tasks":"0.4.x","grunt-livescript":"0.5.x","grunt-contrib-uglify":"0.4.x","grunt-contrib-watch":"0.6.x","karma":"*","karma-qunit":"*","karma-chrome-launcher":"*","karma-ie-launcher":"*","karma-firefox-launcher":"*","karma-opera-launcher":"*","promises-aplus-tests":"*"},"scripts":{"promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"keywords":["ES6","ECMAScript 6","ES7","ECMAScript 7","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","console"],"gitHead":"751f5a70773016da6bfee2f4b7876fce217104eb","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js","_id":"core-js@0.1.4","_shasum":"3e8bcb90d6d34746d3c434ff37afdecc18ad1271","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"dist":{"shasum":"3e8bcb90d6d34746d3c434ff37afdecc18ad1271","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-0.1.4.tgz"},"directories":{}},"0.1.5":{"name":"core-js","description":"Standard library","version":"0.1.5","repository":{"type":"git","url":"https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"LiveScript":"1.3.x","grunt":"0.4.x","load-grunt-tasks":"0.4.x","grunt-livescript":"0.5.x","grunt-contrib-uglify":"0.4.x","grunt-contrib-watch":"0.6.x","karma":"*","karma-qunit":"*","karma-chrome-launcher":"*","karma-ie-launcher":"*","karma-firefox-launcher":"*","karma-opera-launcher":"*","promises-aplus-tests":"*"},"scripts":{"promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"keywords":["ES6","ECMAScript 6","ES7","ECMAScript 7","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","console"],"gitHead":"25600fab9fd84dbb51068859a84244179201c661","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js","_id":"core-js@0.1.5","_shasum":"24fc7d9a08aa333057e8668454371e6b90713d2a","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"dist":{"shasum":"24fc7d9a08aa333057e8668454371e6b90713d2a","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-0.1.5.tgz"},"directories":{}},"0.2.0":{"name":"core-js","description":"Standard library","version":"0.2.0","repository":{"type":"git","url":"https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"LiveScript":"1.3.x","grunt":"0.4.x","load-grunt-tasks":"0.4.x","grunt-livescript":"0.5.x","grunt-contrib-uglify":"0.4.x","grunt-contrib-watch":"0.6.x","karma":"*","karma-qunit":"*","karma-chrome-launcher":"*","karma-ie-launcher":"*","karma-firefox-launcher":"*","karma-opera-launcher":"*","promises-aplus-tests":"*"},"scripts":{"promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"keywords":["ES6","ECMAScript 6","ES7","ECMAScript 7","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","console"],"gitHead":"40de2aab09c78ba6a4cfc6f66aab2d989638b49f","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js","_id":"core-js@0.2.0","_shasum":"8710e0cd5a898f5a118ae627729f0c4ddf92c600","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"dist":{"shasum":"8710e0cd5a898f5a118ae627729f0c4ddf92c600","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-0.2.0.tgz"},"directories":{}},"0.2.1":{"name":"core-js","description":"Standard library","version":"0.2.1","repository":{"type":"git","url":"https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"LiveScript":"1.3.x","grunt":"0.4.x","load-grunt-tasks":"0.4.x","grunt-livescript":"0.5.x","grunt-contrib-uglify":"0.4.x","grunt-contrib-watch":"0.6.x","karma":"*","karma-qunit":"*","karma-chrome-launcher":"*","karma-ie-launcher":"*","karma-firefox-launcher":"*","karma-opera-launcher":"*","promises-aplus-tests":"*"},"scripts":{"promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"keywords":["ES6","ECMAScript 6","ES7","ECMAScript 7","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","console"],"gitHead":"280fcfe4422cfa34235a5a7667d578fddd2a023e","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js","_id":"core-js@0.2.1","_shasum":"f5d5ecf3065d4083dded402629834cd5c7630669","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"dist":{"shasum":"f5d5ecf3065d4083dded402629834cd5c7630669","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-0.2.1.tgz"},"directories":{}},"0.2.2":{"name":"core-js","description":"Standard library","version":"0.2.2","repository":{"type":"git","url":"https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"LiveScript":"1.3.x","grunt":"0.4.x","load-grunt-tasks":"0.4.x","grunt-livescript":"0.5.x","grunt-contrib-uglify":"0.4.x","grunt-contrib-watch":"0.6.x","karma":"*","karma-qunit":"*","karma-chrome-launcher":"*","karma-ie-launcher":"*","karma-firefox-launcher":"*","karma-opera-launcher":"*","promises-aplus-tests":"*"},"scripts":{"promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"keywords":["ES6","ECMAScript 6","ES7","ECMAScript 7","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","console"],"gitHead":"30fc135c56cc92d63f55df5b37e038803f2de37e","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js","_id":"core-js@0.2.2","_shasum":"b95ffd5dde7b1b17c861909485e691503859744e","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"dist":{"shasum":"b95ffd5dde7b1b17c861909485e691503859744e","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-0.2.2.tgz"},"directories":{}},"0.2.3":{"name":"core-js","description":"Standard library","version":"0.2.3","repository":{"type":"git","url":"https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"LiveScript":"1.3.x","grunt":"0.4.x","load-grunt-tasks":"0.4.x","grunt-livescript":"0.5.x","grunt-contrib-uglify":"0.4.x","grunt-contrib-watch":"0.6.x","karma":"*","karma-qunit":"*","karma-chrome-launcher":"*","karma-ie-launcher":"*","karma-firefox-launcher":"*","karma-opera-launcher":"*","promises-aplus-tests":"*"},"scripts":{"promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"keywords":["ES6","ECMAScript 6","ES7","ECMAScript 7","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","console"],"gitHead":"52334df9c651851f12f01fc990714921b182d6e9","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js","_id":"core-js@0.2.3","_shasum":"ac2f3255f53fc6fb16709e1deebd0247c90b93f8","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"dist":{"shasum":"ac2f3255f53fc6fb16709e1deebd0247c90b93f8","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-0.2.3.tgz"},"directories":{}},"0.2.4":{"name":"core-js","description":"Standard library","version":"0.2.4","repository":{"type":"git","url":"https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"LiveScript":"1.3.x","grunt":"0.4.x","load-grunt-tasks":"0.4.x","grunt-livescript":"0.5.x","grunt-contrib-uglify":"0.4.x","grunt-contrib-watch":"0.6.x","karma":"*","karma-qunit":"*","karma-chrome-launcher":"*","karma-ie-launcher":"*","karma-firefox-launcher":"*","karma-opera-launcher":"*","promises-aplus-tests":"*"},"scripts":{"promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"keywords":["ES6","ECMAScript 6","ES7","ECMAScript 7","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","console"],"gitHead":"c954109b96edb2a8e24d97e94e45e2196886403c","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js","_id":"core-js@0.2.4","_shasum":"54f05951c9e33b16275a6be2da48258910baa012","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"dist":{"shasum":"54f05951c9e33b16275a6be2da48258910baa012","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-0.2.4.tgz"},"directories":{}},"0.2.5":{"name":"core-js","description":"Standard library","version":"0.2.5","repository":{"type":"git","url":"https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"LiveScript":"1.3.x","grunt":"0.4.x","load-grunt-tasks":"0.4.x","grunt-livescript":"0.5.x","grunt-contrib-uglify":"0.4.x","grunt-contrib-watch":"0.6.x","karma":"*","karma-qunit":"*","karma-chrome-launcher":"*","karma-ie-launcher":"*","karma-firefox-launcher":"*","karma-opera-launcher":"*","promises-aplus-tests":"*"},"scripts":{"promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"keywords":["ES6","ECMAScript 6","ES7","ECMAScript 7","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","console"],"gitHead":"e5fa6eb9912b67bff6f15677af902b4455af979c","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js","_id":"core-js@0.2.5","_shasum":"35f880367ebb2c4e6b0ceb1f7e34eec30a28e947","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"dist":{"shasum":"35f880367ebb2c4e6b0ceb1f7e34eec30a28e947","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-0.2.5.tgz"},"directories":{}},"0.3.0":{"name":"core-js","description":"Standard library","version":"0.3.0","repository":{"type":"git","url":"https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"LiveScript":"1.3.x","grunt":"0.4.x","load-grunt-tasks":"0.4.x","grunt-livescript":"0.5.x","grunt-contrib-uglify":"0.4.x","grunt-contrib-watch":"0.6.x","karma":"*","karma-qunit":"*","karma-chrome-launcher":"*","karma-ie-launcher":"*","karma-firefox-launcher":"*","karma-opera-launcher":"*","promises-aplus-tests":"*"},"scripts":{"promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"keywords":["ES6","ECMAScript 6","ES7","ECMAScript 7","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","console"],"gitHead":"cbb75eeb2e1d8061c626608ca61193b47a425f80","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js","_id":"core-js@0.3.0","_shasum":"82009e91a14b4266c58f81a5be9499d9d958f29b","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"dist":{"shasum":"82009e91a14b4266c58f81a5be9499d9d958f29b","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-0.3.0.tgz"},"directories":{}},"0.3.1":{"name":"core-js","description":"Standard library","version":"0.3.1","repository":{"type":"git","url":"https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"LiveScript":"1.3.x","grunt":"0.4.x","load-grunt-tasks":"0.4.x","grunt-livescript":"0.5.x","grunt-contrib-uglify":"0.4.x","grunt-contrib-watch":"0.6.x","karma":"*","karma-qunit":"*","karma-chrome-launcher":"*","karma-ie-launcher":"*","karma-firefox-launcher":"*","karma-opera-launcher":"*","promises-aplus-tests":"*"},"scripts":{"promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"keywords":["ES6","ECMAScript 6","ES7","ECMAScript 7","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","console"],"gitHead":"c4eee1575ae4152d8a5e00f0d59b53b859c469c3","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js","_id":"core-js@0.3.1","_shasum":"cd89200e0402bd8900bbc515b56f160b18a34b4b","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"dist":{"shasum":"cd89200e0402bd8900bbc515b56f160b18a34b4b","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-0.3.1.tgz"},"directories":{}},"0.3.2":{"name":"core-js","description":"Standard library","version":"0.3.2","repository":{"type":"git","url":"https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"LiveScript":"1.3.x","grunt":"0.4.x","load-grunt-tasks":"0.4.x","grunt-livescript":"0.5.x","grunt-contrib-uglify":"0.4.x","grunt-contrib-watch":"0.6.x","karma":"*","karma-qunit":"*","karma-chrome-launcher":"*","karma-ie-launcher":"*","karma-firefox-launcher":"*","karma-opera-launcher":"*","promises-aplus-tests":"*"},"scripts":{"promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"keywords":["ES6","ECMAScript 6","ES7","ECMAScript 7","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","console"],"gitHead":"6cc70610ab78a379f142bbd25367f4345faf88ab","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js","_id":"core-js@0.3.2","_shasum":"a36ed7cdf516288fa6a331da6bbff2b0d56615f7","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"dist":{"shasum":"a36ed7cdf516288fa6a331da6bbff2b0d56615f7","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-0.3.2.tgz"},"directories":{}},"0.3.3":{"name":"core-js","description":"Standard library","version":"0.3.3","repository":{"type":"git","url":"https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"LiveScript":"1.3.x","grunt":"0.4.x","load-grunt-tasks":"0.4.x","grunt-livescript":"0.5.x","grunt-contrib-uglify":"0.4.x","grunt-contrib-watch":"0.6.x","karma":"*","karma-qunit":"*","karma-chrome-launcher":"*","karma-ie-launcher":"*","karma-firefox-launcher":"*","karma-opera-launcher":"*","promises-aplus-tests":"*"},"scripts":{"promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"keywords":["ES6","ECMAScript 6","ES7","ECMAScript 7","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","console"],"gitHead":"50e4759747fd477578d81ac418153ffff46a392f","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js","_id":"core-js@0.3.3","_shasum":"b1c88a674186598c664fb0dbf7afe9e33bc8556c","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"dist":{"shasum":"b1c88a674186598c664fb0dbf7afe9e33bc8556c","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-0.3.3.tgz"},"directories":{}},"0.4.0":{"name":"core-js","description":"Standard library","version":"0.4.0","repository":{"type":"git","url":"https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"LiveScript":"1.3.x","grunt":"0.4.x","load-grunt-tasks":"0.4.x","grunt-livescript":"0.5.x","grunt-contrib-uglify":"0.4.x","grunt-contrib-watch":"0.6.x","karma":"*","karma-qunit":"*","karma-chrome-launcher":"*","karma-ie-launcher":"*","karma-firefox-launcher":"*","karma-opera-launcher":"*","promises-aplus-tests":"*"},"scripts":{"promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"keywords":["ES6","ECMAScript 6","ES7","ECMAScript 7","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","console"],"gitHead":"0047c9862ee5f68b39258d0d0f7e383f055bb147","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js","_id":"core-js@0.4.0","_shasum":"f9be410adb5b53f200752d0c918e0d7191e3f4cf","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"dist":{"shasum":"f9be410adb5b53f200752d0c918e0d7191e3f4cf","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-0.4.0.tgz"},"directories":{}},"0.4.1":{"name":"core-js","description":"Standard library","version":"0.4.1","repository":{"type":"git","url":"https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"LiveScript":"1.3.x","grunt":"0.4.x","load-grunt-tasks":"0.4.x","grunt-livescript":"0.5.x","grunt-contrib-uglify":"0.4.x","grunt-contrib-watch":"0.6.x","karma":"*","karma-qunit":"*","karma-chrome-launcher":"*","karma-ie-launcher":"*","karma-firefox-launcher":"*","karma-opera-launcher":"*","promises-aplus-tests":"*"},"scripts":{"promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"keywords":["ES6","ECMAScript 6","ES7","ECMAScript 7","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","console"],"gitHead":"c723557ebbd29f078ed93f815055ef0c2cf69a5b","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js","_id":"core-js@0.4.1","_shasum":"dd86d304a366f892f7651a26868a3154449abc96","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"dist":{"shasum":"dd86d304a366f892f7651a26868a3154449abc96","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-0.4.1.tgz"},"directories":{}},"0.4.2":{"name":"core-js","description":"Standard library","version":"0.4.2","repository":{"type":"git","url":"https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"LiveScript":"1.3.x","grunt":"0.4.x","load-grunt-tasks":"0.4.x","grunt-livescript":"0.5.x","grunt-contrib-uglify":"0.4.x","grunt-contrib-watch":"0.6.x","karma":"*","karma-qunit":"*","karma-chrome-launcher":"*","karma-ie-launcher":"*","karma-firefox-launcher":"*","karma-opera-launcher":"*","promises-aplus-tests":"*"},"scripts":{"promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"keywords":["ES6","ECMAScript 6","ES7","ECMAScript 7","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","console"],"gitHead":"968f50de5b51fc97c932da010149654cede7b8e2","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js","_id":"core-js@0.4.2","_shasum":"2831457113f89e4672aa215c93b2d1bf1d6df505","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"dist":{"shasum":"2831457113f89e4672aa215c93b2d1bf1d6df505","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-0.4.2.tgz"},"directories":{}},"0.4.3":{"name":"core-js","description":"Standard library","version":"0.4.3","repository":{"type":"git","url":"https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"LiveScript":"1.3.x","grunt":"0.4.x","load-grunt-tasks":"0.4.x","grunt-livescript":"0.5.x","grunt-contrib-uglify":"0.4.x","grunt-contrib-watch":"0.6.x","karma":"*","karma-qunit":"*","karma-chrome-launcher":"*","karma-ie-launcher":"*","karma-firefox-launcher":"*","karma-opera-launcher":"*","promises-aplus-tests":"*"},"scripts":{"promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"keywords":["ES6","ECMAScript 6","ES7","ECMAScript 7","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","console"],"gitHead":"0be6165d187463052adaf3a6ec2e818832a7b96e","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js","_id":"core-js@0.4.3","_shasum":"8fb8f386d58ea31364f1bfd01167377d224a7f0b","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"dist":{"shasum":"8fb8f386d58ea31364f1bfd01167377d224a7f0b","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-0.4.3.tgz"},"directories":{}},"0.4.4":{"name":"core-js","description":"Standard library","version":"0.4.4","repository":{"type":"git","url":"https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"LiveScript":"1.3.x","grunt":"0.4.x","load-grunt-tasks":"0.4.x","grunt-livescript":"0.5.x","grunt-contrib-uglify":"0.4.x","grunt-contrib-watch":"0.6.x","karma":"*","karma-qunit":"*","karma-chrome-launcher":"*","karma-ie-launcher":"*","karma-firefox-launcher":"*","karma-opera-launcher":"*","promises-aplus-tests":"*"},"scripts":{"promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"keywords":["ES6","ECMAScript 6","ES7","ECMAScript 7","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","Array generics","setImmediate","console cap","abstract references","partial application","Date formatting"],"gitHead":"f398278fd221579a5e31d493fa0a3b4efd7e5e31","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js","_id":"core-js@0.4.4","_shasum":"ae713589e18c569cf71dbc172efd2779e4034ebc","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"dist":{"shasum":"ae713589e18c569cf71dbc172efd2779e4034ebc","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-0.4.4.tgz"},"directories":{}},"0.4.5":{"name":"core-js","description":"Standard library","version":"0.4.5","repository":{"type":"git","url":"https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"LiveScript":"1.3.x","grunt":"0.4.x","load-grunt-tasks":"0.4.x","grunt-livescript":"0.5.x","grunt-contrib-uglify":"0.4.x","grunt-contrib-watch":"0.6.x","karma":"*","karma-qunit":"*","karma-chrome-launcher":"*","karma-ie-launcher":"*","karma-firefox-launcher":"*","karma-opera-launcher":"*","promises-aplus-tests":"*"},"scripts":{"promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"keywords":["ES6","ECMAScript 6","ES7","ECMAScript 7","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","Array generics","setImmediate","console cap","abstract references","partial application","Date formatting"],"gitHead":"9e90c836b1d6413dc64dc63f7a02d4da130e0bb3","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js","_id":"core-js@0.4.5","_shasum":"b6702b018de4691c1f1c04dcdf9742f8d9cd346c","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"dist":{"shasum":"b6702b018de4691c1f1c04dcdf9742f8d9cd346c","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-0.4.5.tgz"},"directories":{}},"0.4.6":{"name":"core-js","description":"Standard library","version":"0.4.6","repository":{"type":"git","url":"https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"LiveScript":"1.3.x","grunt":"0.4.x","load-grunt-tasks":"0.4.x","grunt-livescript":"0.5.x","grunt-contrib-uglify":"0.4.x","grunt-contrib-watch":"0.6.x","karma":"*","karma-qunit":"*","karma-chrome-launcher":"*","karma-ie-launcher":"*","karma-firefox-launcher":"*","karma-opera-launcher":"*","promises-aplus-tests":"*"},"scripts":{"promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"keywords":["ES6","ECMAScript 6","ES7","ECMAScript 7","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","Array generics","setImmediate","console cap","abstract references","partial application","Date formatting"],"gitHead":"a7e68969b40c7da76ee8993063259efcd09c7bca","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js","_id":"core-js@0.4.6","_shasum":"b5517f6e64cdce74487f5bc2916fdb14a19178d6","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"dist":{"shasum":"b5517f6e64cdce74487f5bc2916fdb14a19178d6","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-0.4.6.tgz"},"directories":{}},"0.4.7":{"name":"core-js","description":"Standard library","version":"0.4.7","repository":{"type":"git","url":"https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"LiveScript":"1.3.x","grunt":"0.4.x","load-grunt-tasks":"0.4.x","grunt-livescript":"0.5.x","grunt-contrib-uglify":"0.4.x","grunt-contrib-watch":"0.6.x","karma":"*","karma-qunit":"*","karma-chrome-launcher":"*","karma-ie-launcher":"*","karma-firefox-launcher":"*","karma-opera-launcher":"*","promises-aplus-tests":"*"},"scripts":{"promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"keywords":["ES6","ECMAScript 6","ES7","ECMAScript 7","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","Array generics","setImmediate","console cap","abstract references","partial application","Date formatting"],"gitHead":"2caccaaeb701fcf4fcf88ed6a3e31f6f8e40cc26","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js","_id":"core-js@0.4.7","_shasum":"fb093880aa229e90e365f141bc2b7b733a7091bf","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"dist":{"shasum":"fb093880aa229e90e365f141bc2b7b733a7091bf","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-0.4.7.tgz"},"directories":{}},"0.4.8":{"name":"core-js","description":"Standard library","version":"0.4.8","repository":{"type":"git","url":"https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"LiveScript":"1.3.x","grunt":"0.4.x","load-grunt-tasks":"0.4.x","grunt-livescript":"0.5.x","grunt-contrib-uglify":"0.4.x","grunt-contrib-watch":"0.6.x","karma":"*","karma-qunit":"*","karma-chrome-launcher":"*","karma-ie-launcher":"*","karma-firefox-launcher":"*","karma-opera-launcher":"*","promises-aplus-tests":"*"},"scripts":{"promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"keywords":["ES6","ECMAScript 6","ES7","ECMAScript 7","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","Array generics","setImmediate","console cap","abstract references","partial application","Date formatting"],"gitHead":"0d5575c68e3dac6469c76c91ad0de3b787a74218","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js","_id":"core-js@0.4.8","_shasum":"aa9207a661aebc4f102cc9334ac50ce94fd29718","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"dist":{"shasum":"aa9207a661aebc4f102cc9334ac50ce94fd29718","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-0.4.8.tgz"},"directories":{}},"0.4.9":{"name":"core-js","description":"Standard library","version":"0.4.9","repository":{"type":"git","url":"https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"LiveScript":"1.3.x","grunt":"0.4.x","load-grunt-tasks":"0.4.x","grunt-livescript":"0.5.x","grunt-contrib-uglify":"0.4.x","grunt-contrib-watch":"0.6.x","karma":"*","karma-qunit":"*","karma-chrome-launcher":"*","karma-ie-launcher":"*","karma-firefox-launcher":"*","karma-opera-launcher":"*","promises-aplus-tests":"*"},"scripts":{"promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"keywords":["ES6","ECMAScript 6","ES7","ECMAScript 7","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","Array generics","setImmediate","console cap","abstract references","partial application","Date formatting"],"gitHead":"d87ce9b8bb35eb9b7fa3f86d3fbb1884bf51e843","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js","_id":"core-js@0.4.9","_shasum":"e1721aa812e5d64f29fa7a5ad3cdea7de6d93f2e","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"dist":{"shasum":"e1721aa812e5d64f29fa7a5ad3cdea7de6d93f2e","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-0.4.9.tgz"},"directories":{}},"0.4.10":{"name":"core-js","description":"Standard library","version":"0.4.10","repository":{"type":"git","url":"https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"LiveScript":"1.3.x","grunt":"0.4.x","load-grunt-tasks":"0.4.x","grunt-livescript":"0.5.x","grunt-contrib-uglify":"0.4.x","grunt-contrib-watch":"0.6.x","karma":"*","karma-qunit":"*","karma-chrome-launcher":"*","karma-ie-launcher":"*","karma-firefox-launcher":"*","karma-opera-launcher":"*","promises-aplus-tests":"*"},"scripts":{"promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"keywords":["ES6","ECMAScript 6","ES7","ECMAScript 7","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","Array generics","setImmediate","console cap","abstract references","partial application","Date formatting"],"gitHead":"f7ad3700494c695aef316288ab18e42a315b6192","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js","_id":"core-js@0.4.10","_shasum":"4fa7adc298d1c716371e639694e261761a24074f","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"dist":{"shasum":"4fa7adc298d1c716371e639694e261761a24074f","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-0.4.10.tgz"},"directories":{}},"0.5.0":{"name":"core-js","description":"Standard library","version":"0.5.0","repository":{"type":"git","url":"https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"LiveScript":"1.3.x","grunt":"0.4.x","load-grunt-tasks":"0.4.x","grunt-livescript":"0.5.x","grunt-contrib-uglify":"0.4.x","grunt-contrib-watch":"0.6.x","karma":"*","karma-qunit":"*","karma-chrome-launcher":"*","karma-ie-launcher":"*","karma-firefox-launcher":"*","karma-opera-launcher":"*","promises-aplus-tests":"*"},"scripts":{"promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"license":"MIT","keywords":["ES6","ECMAScript 6","ES7","ECMAScript 7","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","Array generics","setImmediate","console cap","abstract references","partial application","Date formatting"],"gitHead":"027456bfc5a9c81d963c1ceea840499d4e7d24d9","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js","_id":"core-js@0.5.0","_shasum":"e92e960b82a10a19b5d0896290f33d64242abe01","_from":".","_npmVersion":"2.3.0","_nodeVersion":"1.0.3","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"dist":{"shasum":"e92e960b82a10a19b5d0896290f33d64242abe01","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-0.5.0.tgz"},"directories":{}},"0.5.1":{"name":"core-js","description":"Standard library","version":"0.5.1","repository":{"type":"git","url":"https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"LiveScript":"1.3.x","grunt":"0.4.x","load-grunt-tasks":"0.4.x","grunt-livescript":"0.5.x","grunt-contrib-uglify":"0.4.x","grunt-contrib-watch":"0.6.x","karma":"*","karma-qunit":"*","karma-chrome-launcher":"*","karma-ie-launcher":"*","karma-firefox-launcher":"*","karma-opera-launcher":"*","promises-aplus-tests":"*"},"scripts":{"promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"license":"MIT","keywords":["ES6","ECMAScript 6","ES7","ECMAScript 7","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","Array generics","setImmediate","console cap","abstract references","partial application","Date formatting"],"gitHead":"81922fac08c43b32bd44b4a5646eaa309c14f14b","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js","_id":"core-js@0.5.1","_shasum":"f9f12c7990aee671b8d69356e06217877d505a83","_from":".","_npmVersion":"2.3.0","_nodeVersion":"1.0.3","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"dist":{"shasum":"f9f12c7990aee671b8d69356e06217877d505a83","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-0.5.1.tgz"},"directories":{}},"0.5.2":{"name":"core-js","description":"Standard library","version":"0.5.2","repository":{"type":"git","url":"https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"LiveScript":"1.3.x","grunt":"0.4.x","load-grunt-tasks":"0.4.x","grunt-livescript":"0.5.x","grunt-contrib-uglify":"0.4.x","grunt-contrib-watch":"0.6.x","karma":"*","karma-qunit":"*","karma-chrome-launcher":"*","karma-ie-launcher":"*","karma-firefox-launcher":"*","karma-opera-launcher":"*","promises-aplus-tests":"*"},"scripts":{"promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"license":"MIT","keywords":["ES6","ECMAScript 6","ES7","ECMAScript 7","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","Array generics","setImmediate","console cap","abstract references","partial application","Date formatting"],"gitHead":"2c1ba5040d401c152ae0ade847b6e154efccbfb7","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js","_id":"core-js@0.5.2","_shasum":"37cee659e183e3f09f997434650ac1b60cf0ea1e","_from":".","_npmVersion":"2.3.0","_nodeVersion":"1.0.3","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"dist":{"shasum":"37cee659e183e3f09f997434650ac1b60cf0ea1e","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-0.5.2.tgz"},"directories":{}},"0.5.3":{"name":"core-js","description":"Standard library","version":"0.5.3","repository":{"type":"git","url":"https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"LiveScript":"1.3.x","grunt":"0.4.x","load-grunt-tasks":"0.4.x","grunt-livescript":"0.5.x","grunt-contrib-uglify":"0.4.x","grunt-contrib-watch":"0.6.x","karma":"*","karma-qunit":"*","karma-chrome-launcher":"*","karma-ie-launcher":"*","karma-firefox-launcher":"*","karma-opera-launcher":"*","promises-aplus-tests":"*"},"scripts":{"promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"license":"MIT","keywords":["ES6","ECMAScript 6","ES7","ECMAScript 7","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","Array generics","setImmediate","console cap","abstract references","partial application","Date formatting"],"gitHead":"721d89001e962950976c3875bc230c77abec4c4d","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js","_id":"core-js@0.5.3","_shasum":"d4b329871a8bc025c481cdd2570dabc51abb5345","_from":".","_npmVersion":"2.3.0","_nodeVersion":"1.0.3","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"dist":{"shasum":"d4b329871a8bc025c481cdd2570dabc51abb5345","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-0.5.3.tgz"},"directories":{}},"0.5.4":{"name":"core-js","description":"Standard library","version":"0.5.4","repository":{"type":"git","url":"https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"LiveScript":"1.3.x","grunt":"0.4.x","load-grunt-tasks":"0.4.x","grunt-livescript":"0.5.x","grunt-contrib-uglify":"0.4.x","grunt-contrib-watch":"0.6.x","karma":"*","karma-qunit":"*","karma-chrome-launcher":"*","karma-ie-launcher":"*","karma-firefox-launcher":"*","karma-opera-launcher":"*","promises-aplus-tests":"*"},"scripts":{"promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"license":"MIT","keywords":["ES6","ECMAScript 6","ES7","ECMAScript 7","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","Array generics","setImmediate","console cap","abstract references","partial application","Date formatting"],"gitHead":"1da83f881b0bdde2a453364505cb94a021bedc83","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js","_id":"core-js@0.5.4","_shasum":"04a9f2a0bb21946d98164634b4a7b990a3881296","_from":".","_npmVersion":"2.3.0","_nodeVersion":"1.0.3","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"dist":{"shasum":"04a9f2a0bb21946d98164634b4a7b990a3881296","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-0.5.4.tgz"},"directories":{}},"0.6.0":{"name":"core-js","description":"Standard library","version":"0.6.0","repository":{"type":"git","url":"https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"LiveScript":"1.3.x","grunt":"0.4.x","load-grunt-tasks":"0.4.x","grunt-livescript":"0.5.x","grunt-contrib-uglify":"0.4.x","grunt-contrib-watch":"0.6.x","karma":"*","karma-qunit":"*","karma-chrome-launcher":"*","karma-ie-launcher":"*","karma-firefox-launcher":"*","karma-opera-launcher":"*","promises-aplus-tests":"*"},"scripts":{"promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"license":"MIT","keywords":["ES6","ECMAScript 6","ES7","ECMAScript 7","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","Array generics","setImmediate","console cap","abstract references","partial application","Date formatting"],"gitHead":"e207ef3087a900c956bc5bf4f27e534e3293d9fe","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js","_id":"core-js@0.6.0","_shasum":"49dcd01ca323c5fd475b1826d96cb5ff49b631ec","_from":".","_npmVersion":"2.3.0","_nodeVersion":"1.0.3","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"dist":{"shasum":"49dcd01ca323c5fd475b1826d96cb5ff49b631ec","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-0.6.0.tgz"},"directories":{}},"0.6.1":{"name":"core-js","description":"Standard library","version":"0.6.1","repository":{"type":"git","url":"https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"LiveScript":"1.3.x","grunt":"0.4.x","load-grunt-tasks":"0.4.x","grunt-livescript":"0.5.x","grunt-contrib-uglify":"0.4.x","grunt-contrib-watch":"0.6.x","karma":"*","karma-qunit":"*","karma-chrome-launcher":"*","karma-ie-launcher":"*","karma-firefox-launcher":"*","karma-opera-launcher":"*","promises-aplus-tests":"*"},"scripts":{"promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"license":"MIT","keywords":["ES6","ECMAScript 6","ES7","ECMAScript 7","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","Array generics","setImmediate","console cap","abstract references","partial application","Date formatting"],"gitHead":"26fcc125a430e5b8f8860733df281a1387c9aaab","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js","_id":"core-js@0.6.1","_shasum":"1b4970873e8101bf8c435af095faa9024f4b9b58","_from":".","_npmVersion":"2.3.0","_nodeVersion":"1.0.3","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"dist":{"shasum":"1b4970873e8101bf8c435af095faa9024f4b9b58","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-0.6.1.tgz"},"directories":{}},"0.7.0":{"name":"core-js","description":"Standard library","version":"0.7.0","repository":{"type":"git","url":"https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"browserify":"9.0.x","LiveScript":"1.3.x","grunt":"0.4.x","load-grunt-tasks":"3.1.x","grunt-livescript":"0.5.x","grunt-contrib-uglify":"0.8.x","grunt-contrib-watch":"0.6.x","karma":"0.12.x","karma-qunit":"0.1.x","karma-chrome-launcher":"0.1.x","karma-ie-launcher":"0.1.x","karma-firefox-launcher":"0.1.x","karma-opera-launcher":"0.1.x","promises-aplus-tests":"2.1.x"},"scripts":{"promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"license":"MIT","keywords":["ES6","ECMAScript 6","ES7","ECMAScript 7","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","Array generics","setImmediate","console cap","abstract references","partial application","Date formatting"],"gitHead":"1cc2e565a771df62759c00a31bb1ec68e8c79a90","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js","_id":"core-js@0.7.0","_shasum":"6ddd1387bda9e36e8ab07c3023d36e49fcf246c7","_from":".","_npmVersion":"2.3.0","_nodeVersion":"1.0.3","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"dist":{"shasum":"6ddd1387bda9e36e8ab07c3023d36e49fcf246c7","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-0.7.0.tgz"},"directories":{}},"0.7.1":{"name":"core-js","description":"Standard library","version":"0.7.1","repository":{"type":"git","url":"https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"browserify":"9.0.x","LiveScript":"1.3.x","grunt":"0.4.x","load-grunt-tasks":"3.1.x","grunt-livescript":"0.5.x","grunt-contrib-uglify":"0.8.x","grunt-contrib-watch":"0.6.x","karma":"0.12.x","karma-qunit":"0.1.x","karma-chrome-launcher":"0.1.x","karma-ie-launcher":"0.1.x","karma-firefox-launcher":"0.1.x","karma-opera-launcher":"0.1.x","promises-aplus-tests":"2.1.x"},"scripts":{"promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"license":"MIT","keywords":["ES6","ECMAScript 6","ES7","ECMAScript 7","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","Array generics","setImmediate","console cap","abstract references","partial application","Date formatting"],"gitHead":"f0589b2872c23e23213f855863e3803782d1222b","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js","_id":"core-js@0.7.1","_shasum":"9e96488059e787134fc08f2c8f928e07551428e4","_from":".","_npmVersion":"2.3.0","_nodeVersion":"1.0.3","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"dist":{"shasum":"9e96488059e787134fc08f2c8f928e07551428e4","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-0.7.1.tgz"},"directories":{}},"0.7.2":{"name":"core-js","description":"Standard library","version":"0.7.2","repository":{"type":"git","url":"https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"browserify":"9.0.x","LiveScript":"1.3.x","grunt":"0.4.x","load-grunt-tasks":"3.1.x","grunt-livescript":"0.5.x","grunt-contrib-uglify":"0.8.x","grunt-contrib-watch":"0.6.x","karma":"0.12.x","karma-qunit":"0.1.x","karma-chrome-launcher":"0.1.x","karma-ie-launcher":"0.1.x","karma-firefox-launcher":"0.1.x","karma-opera-launcher":"0.1.x","promises-aplus-tests":"2.1.x"},"scripts":{"promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"license":"MIT","keywords":["ES6","ECMAScript 6","ES7","ECMAScript 7","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","Array generics","setImmediate","console cap","abstract references","partial application","Date formatting"],"gitHead":"44785c3c2791208e7b82e1df04a7427e362141bb","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js","_id":"core-js@0.7.2","_shasum":"132c4f67f0c4721ef9ff891b88db8d6dc743a7e8","_from":".","_npmVersion":"2.3.0","_nodeVersion":"1.0.3","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"dist":{"shasum":"132c4f67f0c4721ef9ff891b88db8d6dc743a7e8","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-0.7.2.tgz"},"directories":{}},"0.8.0":{"name":"core-js","description":"Standard library","version":"0.8.0","repository":{"type":"git","url":"https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"browserify":"9.0.x","LiveScript":"1.3.x","grunt":"0.4.x","grunt-livescript":"0.5.x","grunt-contrib-uglify":"0.8.x","grunt-contrib-watch":"0.6.x","grunt-contrib-clean":"0.6.x","grunt-contrib-copy":"0.8.x","karma":"0.12.x","karma-qunit":"0.1.x","karma-chrome-launcher":"0.1.x","karma-ie-launcher":"0.1.x","karma-firefox-launcher":"0.1.x","karma-opera-launcher":"0.1.x","promises-aplus-tests":"2.1.x","eslint":"0.18.x"},"scripts":{"lint":"eslint es5 es6 es7 js web core fn modules","promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"license":"MIT","keywords":["ES6","ECMAScript 6","ES7","ECMAScript 7","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","Array generics","setImmediate","console cap","abstract references","partial application","Date formatting"],"gitHead":"46dd9ae92d06f67f7bd38f3bcdbb6ab05f93af6f","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js","_id":"core-js@0.8.0","_shasum":"f369c3a4b89b00c59d92f3e07765900f082a1d25","_from":".","_npmVersion":"2.7.1","_nodeVersion":"1.6.2","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"dist":{"shasum":"f369c3a4b89b00c59d92f3e07765900f082a1d25","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-0.8.0.tgz"},"directories":{}},"0.8.1":{"name":"core-js","description":"Standard library","version":"0.8.1","repository":{"type":"git","url":"https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"browserify":"9.0.x","LiveScript":"1.3.x","grunt":"0.4.x","grunt-livescript":"0.5.x","grunt-contrib-uglify":"0.8.x","grunt-contrib-watch":"0.6.x","grunt-contrib-clean":"0.6.x","grunt-contrib-copy":"0.8.x","karma":"0.12.x","karma-qunit":"0.1.x","karma-chrome-launcher":"0.1.x","karma-ie-launcher":"0.1.x","karma-firefox-launcher":"0.1.x","karma-opera-launcher":"0.1.x","promises-aplus-tests":"2.1.x","eslint":"0.18.x"},"scripts":{"lint":"eslint es5 es6 es7 js web core fn modules","promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"license":"MIT","keywords":["ES6","ECMAScript 6","ES7","ECMAScript 7","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","Array generics","setImmediate","console cap","abstract references","partial application","Date formatting"],"gitHead":"b2079af06ab3d875816482d41a3197ecf23951e9","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js","_id":"core-js@0.8.1","_shasum":"15d81691a7f391b20a6eab693ffe84def62f80c2","_from":".","_npmVersion":"2.7.1","_nodeVersion":"1.6.2","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"dist":{"shasum":"15d81691a7f391b20a6eab693ffe84def62f80c2","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-0.8.1.tgz"},"directories":{}},"0.8.2":{"name":"core-js","description":"Standard library","version":"0.8.2","repository":{"type":"git","url":"https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"browserify":"9.0.x","LiveScript":"1.3.x","grunt":"0.4.x","grunt-livescript":"0.5.x","grunt-contrib-uglify":"0.8.x","grunt-contrib-watch":"0.6.x","grunt-contrib-clean":"0.6.x","grunt-contrib-copy":"0.8.x","karma":"0.12.x","karma-qunit":"0.1.x","karma-chrome-launcher":"0.1.x","karma-ie-launcher":"0.1.x","karma-firefox-launcher":"0.1.x","karma-opera-launcher":"0.1.x","promises-aplus-tests":"2.1.x","eslint":"0.18.x"},"scripts":{"lint":"eslint es5 es6 es7 js web core fn modules","promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"license":"MIT","keywords":["ES5","ECMAScript 5","ES6","ECMAScript 6","ES7","ECMAScript 7","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","Array generics","setImmediate","partial application","Date formatting"],"gitHead":"815d8927dd5bd05819dfec0f720a654e1c980312","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js","_id":"core-js@0.8.2","_shasum":"e1757e8472988be3f38e8289c8a582060e016503","_from":".","_npmVersion":"2.7.1","_nodeVersion":"1.6.2","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"dist":{"shasum":"e1757e8472988be3f38e8289c8a582060e016503","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-0.8.2.tgz"},"directories":{}},"0.8.3":{"name":"core-js","description":"Standard library","version":"0.8.3","repository":{"type":"git","url":"https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"browserify":"9.0.x","LiveScript":"1.3.x","grunt":"0.4.x","grunt-livescript":"0.5.x","grunt-contrib-uglify":"0.8.x","grunt-contrib-watch":"0.6.x","grunt-contrib-clean":"0.6.x","grunt-contrib-copy":"0.8.x","karma":"0.12.x","karma-qunit":"0.1.x","karma-chrome-launcher":"0.1.x","karma-ie-launcher":"0.1.x","karma-firefox-launcher":"0.1.x","karma-opera-launcher":"0.1.x","promises-aplus-tests":"2.1.x","eslint":"0.18.x"},"scripts":{"lint":"eslint es5 es6 es7 js web core fn modules","promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"license":"MIT","keywords":["ES5","ECMAScript 5","ES6","ECMAScript 6","ES7","ECMAScript 7","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","Array generics","setImmediate","partial application","Date formatting"],"gitHead":"658ca70798a268caff3c6e046da8e7104903bb18","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js","_id":"core-js@0.8.3","_shasum":"3053499af01864221395ce9ab5743d9850b7b943","_from":".","_npmVersion":"2.7.1","_nodeVersion":"1.6.2","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"dist":{"shasum":"3053499af01864221395ce9ab5743d9850b7b943","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-0.8.3.tgz"},"directories":{}},"0.8.4":{"name":"core-js","description":"Standard library","version":"0.8.4","repository":{"type":"git","url":"https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"webpack":"1.8.x","LiveScript":"1.3.x","grunt":"0.4.x","grunt-livescript":"0.5.x","grunt-contrib-uglify":"0.9.x","grunt-contrib-watch":"0.6.x","grunt-contrib-clean":"0.6.x","grunt-contrib-copy":"0.8.x","karma":"0.12.x","karma-qunit":"0.1.x","karma-chrome-launcher":"0.1.x","karma-ie-launcher":"0.1.x","karma-firefox-launcher":"0.1.x","karma-opera-launcher":"0.1.x","promises-aplus-tests":"2.1.x","eslint":"0.19.x"},"scripts":{"lint":"eslint es5 es6 es7 js web core fn modules","promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"license":"MIT","keywords":["ES5","ECMAScript 5","ES6","ECMAScript 6","ES7","ECMAScript 7","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","Array generics","setImmediate","partial application","Date formatting"],"gitHead":"3bd0d73858f42c99f5a1208070c284d9f35f31b3","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js","_id":"core-js@0.8.4","_shasum":"c22665f1e0d1b9c3c5e1b08dabd1f108695e4fcf","_from":".","_npmVersion":"2.7.1","_nodeVersion":"1.6.2","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"dist":{"shasum":"c22665f1e0d1b9c3c5e1b08dabd1f108695e4fcf","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-0.8.4.tgz"},"directories":{}},"0.9.0":{"name":"core-js","description":"Standard library","version":"0.9.0","repository":{"type":"git","url":"https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"webpack":"1.8.x","LiveScript":"1.3.x","grunt":"0.4.x","grunt-livescript":"0.5.x","grunt-contrib-uglify":"0.9.x","grunt-contrib-watch":"0.6.x","grunt-contrib-clean":"0.6.x","grunt-contrib-copy":"0.8.x","grunt-karma":"0.10.x","karma":"0.12.x","karma-qunit":"0.1.x","karma-chrome-launcher":"0.1.x","karma-ie-launcher":"0.1.x","karma-firefox-launcher":"0.1.x","karma-opera-launcher":"0.1.x","karma-phantomjs-launcher":"0.1.x","promises-aplus-tests":"2.1.x","eslint":"0.19.x"},"scripts":{"lint":"eslint es5 es6 es7 js web core fn modules","promises-tests":"promises-aplus-tests tests/promises_tests_adapter","test":"npm run lint && grunt client livescript karma:continuous && npm run promises-tests && lsc tests/commonjs"},"license":"MIT","keywords":["ES5","ECMAScript 5","ES6","ECMAScript 6","ES7","ECMAScript 7","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","Array generics","setImmediate","partial application","Date formatting"],"gitHead":"34533afcd007cfc3b1eda37602a4e5c7158934a2","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js","_id":"core-js@0.9.0","_shasum":"8e08ef8c7cc54722a56967e0053c126f5771e7f4","_from":".","_npmVersion":"2.7.1","_nodeVersion":"1.6.2","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"dist":{"shasum":"8e08ef8c7cc54722a56967e0053c126f5771e7f4","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-0.9.0.tgz"},"directories":{}},"0.9.1":{"name":"core-js","description":"Standard library","version":"0.9.1","repository":{"type":"git","url":"https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"webpack":"1.8.x","LiveScript":"1.3.x","grunt":"0.4.x","grunt-livescript":"0.5.x","grunt-contrib-uglify":"0.9.x","grunt-contrib-watch":"0.6.x","grunt-contrib-clean":"0.6.x","grunt-contrib-copy":"0.8.x","grunt-karma":"0.10.x","karma":"0.12.x","karma-qunit":"0.1.x","karma-chrome-launcher":"0.1.x","karma-ie-launcher":"0.1.x","karma-firefox-launcher":"0.1.x","karma-opera-launcher":"0.1.x","karma-phantomjs-launcher":"0.1.x","promises-aplus-tests":"2.1.x","eslint":"0.20.x"},"scripts":{"lint":"eslint es5 es6 es7 js web core fn modules","promises-tests":"promises-aplus-tests tests/promises_tests_adapter","test":"npm run lint && grunt client livescript karma:continuous && npm run promises-tests && lsc tests/commonjs"},"license":"MIT","keywords":["ES5","ECMAScript 5","ES6","ECMAScript 6","ES7","ECMAScript 7","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","Array generics","setImmediate","partial application","Date formatting"],"gitHead":"ca3d3dc8257875d22995a11655b1c4cc64f981a3","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js","_id":"core-js@0.9.1","_shasum":"f3093629e411dd8e2441d687582d50a78ab1fe48","_from":".","_npmVersion":"2.7.1","_nodeVersion":"1.6.2","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"dist":{"shasum":"f3093629e411dd8e2441d687582d50a78ab1fe48","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-0.9.1.tgz"},"directories":{}},"0.9.2":{"name":"core-js","description":"Standard library","version":"0.9.2","repository":{"type":"git","url":"https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"webpack":"1.8.x","LiveScript":"1.3.x","grunt":"0.4.x","grunt-livescript":"0.5.x","grunt-contrib-uglify":"0.9.x","grunt-contrib-watch":"0.6.x","grunt-contrib-clean":"0.6.x","grunt-contrib-copy":"0.8.x","grunt-karma":"0.10.x","karma":"0.12.x","karma-qunit":"0.1.x","karma-chrome-launcher":"0.1.x","karma-ie-launcher":"0.1.x","karma-firefox-launcher":"0.1.x","karma-opera-launcher":"0.1.x","karma-phantomjs-launcher":"0.1.x","promises-aplus-tests":"2.1.x","eslint":"0.20.x"},"scripts":{"lint":"eslint es5 es6 es7 js web core fn modules","promises-tests":"promises-aplus-tests tests/promises_tests_adapter","test":"npm run lint && grunt client livescript karma:continuous && npm run promises-tests && lsc tests/commonjs"},"license":"MIT","keywords":["ES5","ECMAScript 5","ES6","ECMAScript 6","ES7","ECMAScript 7","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","Array generics","setImmediate","partial application","Date formatting"],"gitHead":"066cc1cc56d22bc0016f6d61c47b161f4eaa8f5c","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js","_id":"core-js@0.9.2","_shasum":"8fb07c81170269e431f7e378b5a39106297b1dcd","_from":".","_npmVersion":"2.7.1","_nodeVersion":"1.6.2","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"dist":{"shasum":"8fb07c81170269e431f7e378b5a39106297b1dcd","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-0.9.2.tgz"},"directories":{}},"0.9.3":{"name":"core-js","description":"Standard library","version":"0.9.3","repository":{"type":"git","url":"https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"webpack":"1.8.x","LiveScript":"1.3.x","grunt":"0.4.x","grunt-livescript":"0.5.x","grunt-contrib-uglify":"0.9.x","grunt-contrib-watch":"0.6.x","grunt-contrib-clean":"0.6.x","grunt-contrib-copy":"0.8.x","grunt-karma":"0.10.x","karma":"0.12.x","karma-qunit":"0.1.x","karma-chrome-launcher":"0.1.x","karma-ie-launcher":"0.1.x","karma-firefox-launcher":"0.1.x","karma-opera-launcher":"0.1.x","karma-phantomjs-launcher":"0.1.x","promises-aplus-tests":"2.1.x","eslint":"0.20.x"},"scripts":{"lint":"eslint es5 es6 es7 js web core fn modules","promises-tests":"promises-aplus-tests tests/promises_tests_adapter","test":"npm run lint && grunt client livescript karma:continuous && npm run promises-tests && lsc tests/commonjs"},"license":"MIT","keywords":["ES5","ECMAScript 5","ES6","ECMAScript 6","ES7","ECMAScript 7","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","Array generics","setImmediate","partial application","Date formatting"],"gitHead":"06a151a94f0d23047c5a1e209719ce923dafd9db","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js","_id":"core-js@0.9.3","_shasum":"d699e05d0814ec39eab844e2ffafb41cfd3ecc44","_from":".","_npmVersion":"2.7.1","_nodeVersion":"1.6.2","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"dist":{"shasum":"d699e05d0814ec39eab844e2ffafb41cfd3ecc44","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-0.9.3.tgz"},"directories":{}},"0.9.4":{"name":"core-js","description":"Standard library","version":"0.9.4","repository":{"type":"git","url":"https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"webpack":"1.8.x","LiveScript":"1.3.x","grunt":"0.4.x","grunt-livescript":"0.5.x","grunt-contrib-uglify":"0.9.x","grunt-contrib-watch":"0.6.x","grunt-contrib-clean":"0.6.x","grunt-contrib-copy":"0.8.x","grunt-karma":"0.10.x","karma":"0.12.x","karma-qunit":"0.1.x","karma-chrome-launcher":"0.1.x","karma-ie-launcher":"0.1.x","karma-firefox-launcher":"0.1.x","karma-opera-launcher":"0.1.x","karma-phantomjs-launcher":"0.1.x","promises-aplus-tests":"2.1.x","eslint":"0.20.x"},"scripts":{"lint":"eslint es5 es6 es7 js web core fn modules","promises-tests":"promises-aplus-tests tests/promises_tests_adapter","test":"npm run lint && grunt client livescript karma:continuous && npm run promises-tests && lsc tests/commonjs"},"license":"MIT","keywords":["ES5","ECMAScript 5","ES6","ECMAScript 6","ES7","ECMAScript 7","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","Array generics","setImmediate","partial application","Date formatting"],"gitHead":"d287492b07d6440d249400da10d720c752255b1e","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js","_id":"core-js@0.9.4","_shasum":"8dd2f6707662e94bccb2373f88deb9371d67cb59","_from":".","_npmVersion":"2.7.1","_nodeVersion":"1.6.2","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"dist":{"shasum":"8dd2f6707662e94bccb2373f88deb9371d67cb59","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-0.9.4.tgz"},"directories":{}},"0.9.5":{"name":"core-js","description":"Standard library","version":"0.9.5","repository":{"type":"git","url":"https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"webpack":"1.8.x","LiveScript":"1.3.x","grunt":"0.4.x","grunt-livescript":"0.5.x","grunt-contrib-uglify":"0.9.x","grunt-contrib-watch":"0.6.x","grunt-contrib-clean":"0.6.x","grunt-contrib-copy":"0.8.x","grunt-karma":"0.10.x","karma":"0.12.x","karma-qunit":"0.1.x","karma-chrome-launcher":"0.1.x","karma-ie-launcher":"0.1.x","karma-firefox-launcher":"0.1.x","karma-opera-launcher":"0.1.x","karma-phantomjs-launcher":"0.1.x","promises-aplus-tests":"2.1.x","eslint":"0.20.x"},"scripts":{"lint":"eslint es5 es6 es7 js web core fn modules","promises-tests":"promises-aplus-tests tests/promises_tests_adapter","test":"npm run lint && grunt client livescript karma:continuous && npm run promises-tests && lsc tests/commonjs"},"license":"MIT","keywords":["ES5","ECMAScript 5","ES6","ECMAScript 6","ES7","ECMAScript 7","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","Array generics","setImmediate","partial application","Date formatting"],"gitHead":"cd1698262511ab872ed3ac71a7b52605b64df825","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js","_id":"core-js@0.9.5","_shasum":"6382dccfcd8e40d1d505e6dc6dcc0838b4a4ec5a","_from":".","_npmVersion":"2.7.1","_nodeVersion":"1.6.2","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"dist":{"shasum":"6382dccfcd8e40d1d505e6dc6dcc0838b4a4ec5a","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-0.9.5.tgz"},"directories":{}},"0.9.6":{"name":"core-js","description":"Standard library","version":"0.9.6","repository":{"type":"git","url":"https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"webpack":"1.8.x","LiveScript":"1.3.x","grunt":"0.4.x","grunt-livescript":"0.5.x","grunt-contrib-uglify":"0.9.x","grunt-contrib-watch":"0.6.x","grunt-contrib-clean":"0.6.x","grunt-contrib-copy":"0.8.x","grunt-karma":"0.10.x","karma":"0.12.x","karma-qunit":"0.1.x","karma-chrome-launcher":"0.1.x","karma-ie-launcher":"0.1.x","karma-firefox-launcher":"0.1.x","karma-opera-launcher":"0.1.x","karma-phantomjs-launcher":"0.1.x","promises-aplus-tests":"2.1.x","eslint":"0.20.x"},"scripts":{"lint":"eslint es5 es6 es7 js web core fn modules","promises-tests":"promises-aplus-tests tests/promises_tests_adapter","test":"npm run lint && grunt client livescript karma:continuous && npm run promises-tests && lsc tests/commonjs"},"license":"MIT","keywords":["ES5","ECMAScript 5","ES6","ECMAScript 6","ES7","ECMAScript 7","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","Array generics","setImmediate","partial application","Date formatting"],"gitHead":"da2e002d801f4e064ecb6feccf6cb30ae40bd5d4","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js","_id":"core-js@0.9.6","_shasum":"cde6fcf07f2ed4e6b6841152836e3872feee73db","_from":".","_npmVersion":"2.7.1","_nodeVersion":"1.6.2","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"dist":{"shasum":"cde6fcf07f2ed4e6b6841152836e3872feee73db","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-0.9.6.tgz"},"directories":{}},"0.9.7":{"name":"core-js","description":"Standard library","version":"0.9.7","repository":{"type":"git","url":"https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"webpack":"1.8.x","LiveScript":"1.3.x","grunt":"0.4.x","grunt-livescript":"0.5.x","grunt-contrib-uglify":"0.9.x","grunt-contrib-watch":"0.6.x","grunt-contrib-clean":"0.6.x","grunt-contrib-copy":"0.8.x","grunt-karma":"0.10.x","karma":"0.12.x","karma-qunit":"0.1.x","karma-chrome-launcher":"0.1.x","karma-ie-launcher":"0.1.x","karma-firefox-launcher":"0.1.x","karma-opera-launcher":"0.1.x","karma-phantomjs-launcher":"0.1.x","promises-aplus-tests":"2.1.x","eslint":"0.20.x"},"scripts":{"lint":"eslint es5 es6 es7 js web core fn modules","promises-tests":"promises-aplus-tests tests/promises_tests_adapter","test":"npm run lint && grunt client livescript karma:continuous && npm run promises-tests && lsc tests/commonjs"},"license":"MIT","keywords":["ES5","ECMAScript 5","ES6","ECMAScript 6","ES7","ECMAScript 7","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","Array generics","setImmediate","partial application","Date formatting"],"gitHead":"8bf237f975a186f678ddf38256f85b32784ad81a","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js","_id":"core-js@0.9.7","_shasum":"8b7da390cd0c0bf120cabd6a64e1243fbc0596e0","_from":".","_npmVersion":"2.7.1","_nodeVersion":"1.6.2","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"dist":{"shasum":"8b7da390cd0c0bf120cabd6a64e1243fbc0596e0","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-0.9.7.tgz"},"directories":{}},"0.9.8":{"name":"core-js","description":"Standard library","version":"0.9.8","repository":{"type":"git","url":"https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"webpack":"1.9.x","LiveScript":"1.3.x","grunt":"0.4.x","grunt-livescript":"0.5.x","grunt-contrib-uglify":"0.9.x","grunt-contrib-watch":"0.6.x","grunt-contrib-clean":"0.6.x","grunt-contrib-copy":"0.8.x","grunt-karma":"0.10.x","karma":"0.12.x","karma-qunit":"0.1.x","karma-chrome-launcher":"0.1.x","karma-ie-launcher":"0.1.x","karma-firefox-launcher":"0.1.x","karma-opera-launcher":"0.1.x","karma-phantomjs-launcher":"0.1.x","promises-aplus-tests":"2.1.x","eslint":"0.20.x"},"scripts":{"lint":"eslint es5 es6 es7 js web core fn modules","promises-tests":"promises-aplus-tests tests/promises_tests_adapter","test":"npm run lint && grunt client livescript karma:continuous && npm run promises-tests && lsc tests/commonjs"},"license":"MIT","keywords":["ES5","ECMAScript 5","ES6","ECMAScript 6","ES7","ECMAScript 7","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","Array generics","setImmediate","partial application","Date formatting"],"gitHead":"bb1f0fb73bc8dc61c9b2ebbdeaaed98ecb06808e","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js","_id":"core-js@0.9.8","_shasum":"c584308ffd747964218d9a1b581ae06c8e3010ed","_from":".","_npmVersion":"2.7.1","_nodeVersion":"1.6.2","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"dist":{"shasum":"c584308ffd747964218d9a1b581ae06c8e3010ed","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-0.9.8.tgz"},"directories":{}},"0.9.9":{"name":"core-js","description":"Standard library","version":"0.9.9","repository":{"type":"git","url":"https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"webpack":"1.9.x","LiveScript":"1.3.x","grunt":"0.4.x","grunt-livescript":"0.5.x","grunt-contrib-uglify":"0.9.x","grunt-contrib-watch":"0.6.x","grunt-contrib-clean":"0.6.x","grunt-contrib-copy":"0.8.x","grunt-karma":"0.10.x","karma":"0.12.x","karma-qunit":"0.1.x","karma-chrome-launcher":"0.1.x","karma-ie-launcher":"0.1.x","karma-firefox-launcher":"0.1.x","karma-opera-launcher":"0.1.x","karma-phantomjs-launcher":"0.1.x","promises-aplus-tests":"2.1.x","eslint":"0.20.x"},"scripts":{"lint":"eslint es5 es6 es7 js web core fn modules","promises-tests":"promises-aplus-tests tests/promises_tests_adapter","test":"npm run lint && grunt client livescript karma:continuous && npm run promises-tests && lsc tests/commonjs"},"license":"MIT","keywords":["ES5","ECMAScript 5","ES6","ECMAScript 6","ES7","ECMAScript 7","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","Array generics","setImmediate","partial application","Date formatting"],"gitHead":"786e909eb37da744eee71aef2ce9437bc5c8f85b","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js","_id":"core-js@0.9.9","_shasum":"14747a751c4305cb9baef31ced7ac0f29db292b0","_from":".","_npmVersion":"2.7.1","_nodeVersion":"1.6.2","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"dist":{"shasum":"14747a751c4305cb9baef31ced7ac0f29db292b0","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-0.9.9.tgz"},"directories":{}},"0.9.10":{"name":"core-js","description":"Standard library","version":"0.9.10","repository":{"type":"git","url":"https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"webpack":"1.9.x","LiveScript":"1.3.x","grunt":"0.4.x","grunt-livescript":"0.5.x","grunt-contrib-uglify":"0.9.x","grunt-contrib-watch":"0.6.x","grunt-contrib-clean":"0.6.x","grunt-contrib-copy":"0.8.x","grunt-karma":"0.10.x","karma":"0.12.x","karma-qunit":"0.1.x","karma-chrome-launcher":"0.1.x","karma-ie-launcher":"0.1.x","karma-firefox-launcher":"0.1.x","karma-opera-launcher":"0.1.x","karma-phantomjs-launcher":"0.1.x","promises-aplus-tests":"2.1.x","eslint":"0.20.x"},"scripts":{"lint":"eslint es5 es6 es7 js web core fn modules","promises-tests":"promises-aplus-tests tests/promises_tests_adapter","test":"npm run lint && grunt client livescript karma:continuous && npm run promises-tests && lsc tests/commonjs"},"license":"MIT","keywords":["ES5","ECMAScript 5","ES6","ECMAScript 6","ES7","ECMAScript 7","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","Array generics","setImmediate","partial application","Date formatting"],"gitHead":"648bb79be57a0d8c465c9a1bc99ad8c0f185d11f","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js","_id":"core-js@0.9.10","_shasum":"961bec2ab11cc30eb45d5a0ede9a021df0a0fb4a","_from":".","_npmVersion":"2.7.1","_nodeVersion":"1.6.2","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"dist":{"shasum":"961bec2ab11cc30eb45d5a0ede9a021df0a0fb4a","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-0.9.10.tgz"},"directories":{}},"0.9.11":{"name":"core-js","description":"Standard library","version":"0.9.11","repository":{"type":"git","url":"https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"webpack":"1.9.x","LiveScript":"1.3.x","grunt":"0.4.x","grunt-cli":"0.1.x","grunt-livescript":"0.5.x","grunt-contrib-uglify":"0.9.x","grunt-contrib-watch":"0.6.x","grunt-contrib-clean":"0.6.x","grunt-contrib-copy":"0.8.x","grunt-karma":"0.10.x","karma":"0.12.x","karma-qunit":"0.1.x","karma-chrome-launcher":"0.1.x","karma-ie-launcher":"0.1.x","karma-firefox-launcher":"0.1.x","karma-opera-launcher":"0.1.x","karma-phantomjs-launcher":"0.1.x","promises-aplus-tests":"2.1.x","eslint":"0.21.x"},"scripts":{"grunt":"grunt","lint":"eslint es5 es6 es7 js web core fn modules","promises-tests":"promises-aplus-tests tests/promises_tests_adapter","test":"npm run lint && npm run grunt client livescript karma:continuous && npm run promises-tests && lsc tests/commonjs"},"license":"MIT","keywords":["ES5","ECMAScript 5","ES6","ECMAScript 6","ES7","ECMAScript 7","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","Array generics","setImmediate","partial application","Date formatting"],"gitHead":"05b4836bba45aec7af8536d13ace6f4f68cd73e2","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js","_id":"core-js@0.9.11","_shasum":"0333c30c0bd85a4b2fff1da6578663775b3045d3","_from":".","_npmVersion":"2.7.1","_nodeVersion":"1.6.2","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"dist":{"shasum":"0333c30c0bd85a4b2fff1da6578663775b3045d3","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-0.9.11.tgz"},"directories":{}},"0.9.12":{"name":"core-js","description":"Standard library","version":"0.9.12","repository":{"type":"git","url":"https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"webpack":"1.9.x","LiveScript":"1.3.x","grunt":"0.4.x","grunt-cli":"0.1.x","grunt-livescript":"0.5.x","grunt-contrib-uglify":"0.9.x","grunt-contrib-watch":"0.6.x","grunt-contrib-clean":"0.6.x","grunt-contrib-copy":"0.8.x","grunt-karma":"0.10.x","karma":"0.12.x","karma-qunit":"0.1.x","karma-chrome-launcher":"0.1.x","karma-ie-launcher":"0.1.x","karma-firefox-launcher":"0.1.x","karma-opera-launcher":"0.1.x","karma-phantomjs-launcher":"0.1.x","promises-aplus-tests":"2.1.x","eslint":"0.21.x"},"scripts":{"grunt":"grunt","lint":"eslint es5 es6 es7 js web core fn modules","promises-tests":"promises-aplus-tests tests/promises_tests_adapter","test":"npm run lint && npm run grunt client livescript karma:continuous && npm run promises-tests && lsc tests/commonjs"},"license":"MIT","keywords":["ES5","ECMAScript 5","ES6","ECMAScript 6","ES7","ECMAScript 7","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","Array generics","setImmediate","partial application","Date formatting"],"gitHead":"218201829d27862a2ace3d0aecb7d3b85dc339a4","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js","_id":"core-js@0.9.12","_shasum":"de9ab51243467698d6b7abe45420c2accc23474e","_from":".","_npmVersion":"2.7.1","_nodeVersion":"1.6.2","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"dist":{"shasum":"de9ab51243467698d6b7abe45420c2accc23474e","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-0.9.12.tgz"},"directories":{}},"0.9.13":{"name":"core-js","description":"Standard library","version":"0.9.13","repository":{"type":"git","url":"https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"webpack":"1.9.x","LiveScript":"1.3.x","grunt":"0.4.x","grunt-cli":"0.1.x","grunt-livescript":"0.5.x","grunt-contrib-uglify":"0.9.x","grunt-contrib-watch":"0.6.x","grunt-contrib-clean":"0.6.x","grunt-contrib-copy":"0.8.x","grunt-karma":"0.10.x","karma":"0.12.x","karma-qunit":"0.1.x","karma-chrome-launcher":"0.1.x","karma-ie-launcher":"0.1.x","karma-firefox-launcher":"0.1.x","karma-opera-launcher":"0.1.x","karma-phantomjs-launcher":"0.1.x","promises-aplus-tests":"2.1.x","eslint":"0.21.x"},"scripts":{"grunt":"grunt","lint":"eslint es5 es6 es7 js web core fn modules","promises-tests":"promises-aplus-tests tests/promises_tests_adapter","test":"npm run lint && npm run grunt client livescript karma:continuous && npm run promises-tests && lsc tests/commonjs"},"license":"MIT","keywords":["ES5","ECMAScript 5","ES6","ECMAScript 6","ES7","ECMAScript 7","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","Array generics","setImmediate","partial application","Date formatting"],"gitHead":"9dfcfcfd4f5a58e1c3bb1d42fb2cdcbaaaf2d6a9","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js","_id":"core-js@0.9.13","_shasum":"16eec125ae9427b6b647d0adbaa12e92963ecb62","_from":".","_npmVersion":"2.7.1","_nodeVersion":"1.6.2","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"dist":{"shasum":"16eec125ae9427b6b647d0adbaa12e92963ecb62","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-0.9.13.tgz"},"directories":{}},"0.9.14":{"name":"core-js","description":"Standard library","version":"0.9.14","repository":{"type":"git","url":"https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"webpack":"1.9.x","LiveScript":"1.3.x","grunt":"0.4.x","grunt-cli":"0.1.x","grunt-livescript":"0.5.x","grunt-contrib-uglify":"0.9.x","grunt-contrib-watch":"0.6.x","grunt-contrib-clean":"0.6.x","grunt-contrib-copy":"0.8.x","grunt-karma":"0.11.x","karma":"0.12.x","karma-qunit":"0.1.x","karma-chrome-launcher":"0.1.x","karma-ie-launcher":"0.1.x","karma-firefox-launcher":"0.1.x","karma-opera-launcher":"0.1.x","karma-phantomjs-launcher":"0.2.x","promises-aplus-tests":"2.1.x","eslint":"^0.22.1"},"scripts":{"grunt":"grunt","lint":"eslint es5 es6 es7 js web core fn modules","promises-tests":"promises-aplus-tests tests/promises_tests_adapter","test":"npm run lint && npm run grunt client livescript karma:continuous && npm run promises-tests && lsc tests/commonjs"},"license":"MIT","keywords":["ES5","ECMAScript 5","ES6","ECMAScript 6","ES7","ECMAScript 7","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","Array generics","setImmediate","partial application","Date formatting"],"gitHead":"c56966c210f1249e5c160478c40da2822de2038a","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js","_id":"core-js@0.9.14","_shasum":"a079a4dabc8da7a2a28146d0efed248d86cbee47","_from":".","_npmVersion":"2.7.1","_nodeVersion":"1.6.2","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"dist":{"shasum":"a079a4dabc8da7a2a28146d0efed248d86cbee47","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-0.9.14.tgz"},"directories":{}},"0.9.15":{"name":"core-js","description":"Standard library","version":"0.9.15","repository":{"type":"git","url":"git+https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"webpack":"1.9.x","LiveScript":"1.3.x","grunt":"0.4.x","grunt-cli":"0.1.x","grunt-livescript":"0.5.x","grunt-contrib-uglify":"0.9.x","grunt-contrib-watch":"0.6.x","grunt-contrib-clean":"0.6.x","grunt-contrib-copy":"0.8.x","grunt-karma":"0.11.x","karma":"0.12.x","karma-qunit":"0.1.x","karma-chrome-launcher":"0.1.x","karma-ie-launcher":"0.1.x","karma-firefox-launcher":"0.1.x","karma-opera-launcher":"0.1.x","karma-phantomjs-launcher":"0.2.x","promises-aplus-tests":"2.1.x","eslint":"^0.22.1"},"scripts":{"grunt":"grunt","lint":"eslint es5 es6 es7 js web core fn modules","promises-tests":"promises-aplus-tests tests/promises_tests_adapter","test":"npm run lint && npm run grunt client livescript karma:continuous && npm run promises-tests && lsc tests/commonjs"},"license":"MIT","keywords":["ES5","ECMAScript 5","ES6","ECMAScript 6","ES7","ECMAScript 7","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","Array generics","setImmediate","partial application","Date formatting"],"gitHead":"35eadac77ba4987f972254a942b05c378959c013","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js#readme","_id":"core-js@0.9.15","_shasum":"b2b75ba45ebba790fd2c2a3dd6e4c90d6f3977a1","_from":".","_npmVersion":"2.11.0","_nodeVersion":"2.2.1","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"dist":{"shasum":"b2b75ba45ebba790fd2c2a3dd6e4c90d6f3977a1","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-0.9.15.tgz"},"directories":{}},"0.9.16":{"name":"core-js","description":"Standard library","version":"0.9.16","repository":{"type":"git","url":"git+https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"webpack":"1.9.x","LiveScript":"1.3.x","grunt":"0.4.x","grunt-cli":"0.1.x","grunt-livescript":"0.5.x","grunt-contrib-uglify":"0.9.x","grunt-contrib-watch":"0.6.x","grunt-contrib-clean":"0.6.x","grunt-contrib-copy":"0.8.x","grunt-karma":"0.11.x","karma":"0.12.x","karma-qunit":"0.1.x","karma-chrome-launcher":"0.1.x","karma-ie-launcher":"0.2.x","karma-firefox-launcher":"0.1.x","karma-opera-launcher":"0.1.x","karma-phantomjs-launcher":"0.2.x","promises-aplus-tests":"2.1.x","eslint":"^0.22.1"},"scripts":{"grunt":"grunt","lint":"eslint es5 es6 es7 js web core fn modules","promises-tests":"promises-aplus-tests tests/promises_tests_adapter","test":"npm run lint && npm run grunt client livescript karma:continuous && npm run promises-tests && lsc tests/commonjs"},"license":"MIT","keywords":["ES5","ECMAScript 5","ES6","ECMAScript 6","ES7","ECMAScript 7","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","Array generics","setImmediate","partial application","Date formatting"],"gitHead":"a4d472ff6852a9f924ec071cf29c2c747c6daf75","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js#readme","_id":"core-js@0.9.16","_shasum":"c62751204bd830ecb596b90744adefa58aab5df0","_from":".","_npmVersion":"2.11.0","_nodeVersion":"2.2.1","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"dist":{"shasum":"c62751204bd830ecb596b90744adefa58aab5df0","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-0.9.16.tgz"},"directories":{}},"0.9.17":{"name":"core-js","description":"Standard library","version":"0.9.17","repository":{"type":"git","url":"git+https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"webpack":"1.9.x","LiveScript":"1.3.x","grunt":"0.4.x","grunt-cli":"0.1.x","grunt-livescript":"0.5.x","grunt-contrib-uglify":"0.9.x","grunt-contrib-watch":"0.6.x","grunt-contrib-clean":"0.6.x","grunt-contrib-copy":"0.8.x","grunt-karma":"0.11.x","karma":"0.12.x","karma-qunit":"0.1.x","karma-chrome-launcher":"0.1.x","karma-ie-launcher":"0.2.x","karma-firefox-launcher":"0.1.x","karma-opera-launcher":"0.1.x","karma-phantomjs-launcher":"0.2.x","promises-aplus-tests":"2.1.x","eslint":"^0.22.1"},"scripts":{"grunt":"grunt","lint":"eslint es5 es6 es7 js web core fn modules","promises-tests":"promises-aplus-tests tests/promises_tests_adapter","test":"npm run lint && npm run grunt client livescript karma:continuous && npm run promises-tests && lsc tests/commonjs"},"license":"MIT","keywords":["ES5","ECMAScript 5","ES6","ECMAScript 6","ES7","ECMAScript 7","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","Array generics","setImmediate","partial application","Date formatting"],"gitHead":"01b50a7b9496e89851f5a229a0a26f2335c202ee","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js#readme","_id":"core-js@0.9.17","_shasum":"4b846cb8c0dbba85a8cc93da3338f440906ccf8d","_from":".","_npmVersion":"2.11.0","_nodeVersion":"2.2.1","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"dist":{"shasum":"4b846cb8c0dbba85a8cc93da3338f440906ccf8d","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-0.9.17.tgz"},"directories":{}},"0.9.18":{"name":"core-js","description":"Standard library","version":"0.9.18","repository":{"type":"git","url":"git+https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"webpack":"1.9.x","LiveScript":"1.3.x","grunt":"0.4.x","grunt-cli":"0.1.x","grunt-livescript":"0.5.x","grunt-contrib-uglify":"0.9.x","grunt-contrib-watch":"0.6.x","grunt-contrib-clean":"0.6.x","grunt-contrib-copy":"0.8.x","grunt-karma":"0.11.x","karma":"0.12.x","karma-qunit":"0.1.x","karma-chrome-launcher":"0.1.x","karma-ie-launcher":"0.2.x","karma-firefox-launcher":"0.1.x","karma-opera-launcher":"0.1.x","karma-phantomjs-launcher":"0.2.x","promises-aplus-tests":"2.1.x","eslint":"0.23.x"},"scripts":{"grunt":"grunt","lint":"eslint es5 es6 es7 js web core fn modules","promises-tests":"promises-aplus-tests tests/promises_tests_adapter","test":"npm run lint && npm run grunt client livescript karma:continuous && npm run promises-tests && lsc tests/commonjs"},"license":"MIT","keywords":["ES5","ECMAScript 5","ES6","ECMAScript 6","ES7","ECMAScript 7","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","Array generics","setImmediate","partial application","Date formatting"],"gitHead":"e60761932a660074c10ed5649f332ab06b6919a4","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js#readme","_id":"core-js@0.9.18","_shasum":"13f458e430232b0f4ec1f480da7c2f5288e9d095","_from":".","_npmVersion":"2.11.0","_nodeVersion":"2.2.1","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"dist":{"shasum":"13f458e430232b0f4ec1f480da7c2f5288e9d095","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-0.9.18.tgz"},"directories":{}},"1.0.0":{"name":"core-js","description":"Standard library","version":"1.0.0","repository":{"type":"git","url":"git+https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"webpack":"1.10.x","LiveScript":"1.3.x","grunt":"0.4.x","grunt-cli":"0.1.x","grunt-livescript":"0.5.x","grunt-contrib-uglify":"0.9.x","grunt-contrib-watch":"0.6.x","grunt-contrib-clean":"0.6.x","grunt-contrib-copy":"0.8.x","grunt-karma":"0.12.x","karma":"0.13.x","karma-qunit":"0.1.x","karma-chrome-launcher":"0.2.x","karma-ie-launcher":"0.2.x","karma-firefox-launcher":"0.1.x","karma-phantomjs-launcher":"0.2.x","promises-aplus-tests":"2.1.x","eslint":"0.24.x"},"scripts":{"grunt":"grunt","lint":"eslint es5 es6 es7 js web core fn modules","promises-tests":"promises-aplus-tests tests/promises_tests_adapter","test":"npm run lint && npm run grunt client livescript karma:continuous && npm run promises-tests && lsc tests/commonjs"},"license":"MIT","keywords":["ES5","ECMAScript 5","ES6","ECMAScript 6","ES7","ECMAScript 7","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","Array generics","setImmediate","Dict","partial application"],"gitHead":"a6f288e8fa62dc1826f9f86b5cc49e2767b727ee","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js#readme","_id":"core-js@1.0.0","_shasum":"5f871c64bf47c5e80bbbf9f07fdd9dab0608fd69","_from":".","_npmVersion":"2.11.0","_nodeVersion":"2.2.1","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"dist":{"shasum":"5f871c64bf47c5e80bbbf9f07fdd9dab0608fd69","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-1.0.0.tgz"},"directories":{}},"1.0.1":{"name":"core-js","description":"Standard library","version":"1.0.1","repository":{"type":"git","url":"git+https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"webpack":"1.10.x","LiveScript":"1.3.x","grunt":"0.4.x","grunt-cli":"0.1.x","grunt-livescript":"0.5.x","grunt-contrib-uglify":"0.9.x","grunt-contrib-watch":"0.6.x","grunt-contrib-clean":"0.6.x","grunt-contrib-copy":"0.8.x","grunt-karma":"0.12.x","karma":"0.13.x","karma-qunit":"0.1.x","karma-chrome-launcher":"0.2.x","karma-ie-launcher":"0.2.x","karma-firefox-launcher":"0.1.x","karma-phantomjs-launcher":"0.2.x","promises-aplus-tests":"2.1.x","eslint":"0.24.x"},"scripts":{"grunt":"grunt","lint":"eslint es5 es6 es7 js web core fn modules","promises-tests":"promises-aplus-tests tests/promises_tests_adapter","test":"npm run lint && npm run grunt client livescript karma:continuous && npm run promises-tests && lsc tests/commonjs"},"license":"MIT","keywords":["ES5","ECMAScript 5","ES6","ECMAScript 6","ES7","ECMAScript 7","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","Array generics","setImmediate","Dict","partial application"],"gitHead":"9f5fa6afa396d92ea166e136a33da90be3919d91","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js#readme","_id":"core-js@1.0.1","_shasum":"82d2284b718a03bf8bf2813d5c17177c6adacf08","_from":".","_npmVersion":"2.13.0","_nodeVersion":"2.4.0","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"dist":{"shasum":"82d2284b718a03bf8bf2813d5c17177c6adacf08","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-1.0.1.tgz"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"directories":{}},"1.1.0":{"name":"core-js","description":"Standard library","version":"1.1.0","repository":{"type":"git","url":"git+https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"webpack":"1.11.x","LiveScript":"1.3.x","grunt":"0.4.x","grunt-cli":"0.1.x","grunt-livescript":"0.5.x","grunt-contrib-uglify":"0.9.x","grunt-contrib-watch":"0.6.x","grunt-contrib-clean":"0.6.x","grunt-contrib-copy":"0.8.x","grunt-karma":"0.12.x","karma":"0.13.x","karma-qunit":"0.1.x","karma-chrome-launcher":"0.2.x","karma-ie-launcher":"0.2.x","karma-firefox-launcher":"0.1.x","karma-phantomjs-launcher":"0.2.x","karma-phantomjs2-launcher":"^0.3.2","promises-aplus-tests":"2.1.x","eslint":"1.1.x"},"scripts":{"grunt":"grunt","lint":"eslint es5 es6 es7 js web core fn modules","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter","test":"npm run lint && npm run grunt client livescript karma:continuous && npm run promises-tests && lsc tests/commonjs","lt":"npm run lint && npm run grunt client livescript karma:lt && npm run promises-tests && lsc tests/commonjs"},"license":"MIT","keywords":["ES5","ECMAScript 5","ES6","ECMAScript 6","ES7","ECMAScript 7","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","Array generics","setImmediate","Dict","partial application"],"gitHead":"c9b2dbdb2d9c7cf01c4a9b504b4ad722a4cd95a2","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js#readme","_id":"core-js@1.1.0","_shasum":"8e6cc5e4799c11855951300c282c1c88f52f2b9d","_from":".","_npmVersion":"2.13.3","_nodeVersion":"3.0.0","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"dist":{"shasum":"8e6cc5e4799c11855951300c282c1c88f52f2b9d","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-1.1.0.tgz"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"directories":{}},"1.1.1":{"name":"core-js","description":"Standard library","version":"1.1.1","repository":{"type":"git","url":"git+https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"webpack":"1.11.x","LiveScript":"1.3.x","grunt":"0.4.x","grunt-cli":"0.1.x","grunt-livescript":"0.5.x","grunt-contrib-uglify":"0.9.x","grunt-contrib-watch":"0.6.x","grunt-contrib-clean":"0.6.x","grunt-contrib-copy":"0.8.x","grunt-karma":"0.12.x","karma":"0.13.x","karma-qunit":"0.1.x","karma-chrome-launcher":"0.2.x","karma-ie-launcher":"0.2.x","karma-firefox-launcher":"0.1.x","karma-phantomjs-launcher":"0.2.x","karma-phantomjs2-launcher":"^0.3.2","promises-aplus-tests":"2.1.x","eslint":"1.2.x"},"scripts":{"grunt":"grunt","lint":"eslint es5 es6 es7 js web core fn modules","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter","test":"npm run lint && npm run grunt client livescript karma:continuous && npm run promises-tests && lsc tests/commonjs","lt":"npm run lint && npm run grunt client livescript karma:lt && npm run promises-tests && lsc tests/commonjs"},"license":"MIT","keywords":["ES5","ECMAScript 5","ES6","ECMAScript 6","ES7","ECMAScript 7","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","Array generics","setImmediate","Dict","partial application"],"gitHead":"84dd361666804271a8fa2640478e1d1315c5343e","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js#readme","_id":"core-js@1.1.1","_shasum":"3ea0867d9bcd2076ef619e44075d3e7239453060","_from":".","_npmVersion":"2.13.3","_nodeVersion":"3.0.0","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"dist":{"shasum":"3ea0867d9bcd2076ef619e44075d3e7239453060","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-1.1.1.tgz"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"directories":{}},"1.1.2":{"name":"core-js","description":"Standard library","version":"1.1.2","repository":{"type":"git","url":"git+https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"webpack":"1.12.x","LiveScript":"1.3.x","grunt":"0.4.x","grunt-cli":"0.1.x","grunt-livescript":"0.5.x","grunt-contrib-uglify":"0.9.x","grunt-contrib-watch":"0.6.x","grunt-contrib-clean":"0.6.x","grunt-contrib-copy":"0.8.x","grunt-karma":"0.12.x","karma":"0.13.x","karma-qunit":"0.1.x","karma-chrome-launcher":"0.2.x","karma-ie-launcher":"0.2.x","karma-firefox-launcher":"0.1.x","karma-phantomjs-launcher":"0.2.x","karma-phantomjs2-launcher":"^0.3.2","promises-aplus-tests":"2.1.x","eslint":"1.2.x"},"scripts":{"grunt":"grunt","lint":"eslint es5 es6 es7 js web core fn modules","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter","test":"npm run lint && npm run grunt client livescript karma:continuous && npm run promises-tests && lsc tests/commonjs","lt":"npm run lint && npm run grunt client livescript karma:lt && npm run promises-tests && lsc tests/commonjs"},"license":"MIT","keywords":["ES5","ECMAScript 5","ES6","ECMAScript 6","ES7","ECMAScript 7","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","Array generics","setImmediate","Dict","partial application"],"gitHead":"f7bd05b31db2d63b068cee7adb6335b01ef6b8fe","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js#readme","_id":"core-js@1.1.2","_shasum":"05a009ad3abbd44895f32f03ba77062297f5cc7e","_from":".","_npmVersion":"2.13.3","_nodeVersion":"3.0.0","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"dist":{"shasum":"05a009ad3abbd44895f32f03ba77062297f5cc7e","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-1.1.2.tgz"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"directories":{}},"1.1.3":{"name":"core-js","description":"Standard library","version":"1.1.3","repository":{"type":"git","url":"git+https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"webpack":"1.12.x","LiveScript":"1.3.x","grunt":"0.4.x","grunt-cli":"0.1.x","grunt-livescript":"0.5.x","grunt-contrib-uglify":"0.9.x","grunt-contrib-watch":"0.6.x","grunt-contrib-clean":"0.6.x","grunt-contrib-copy":"0.8.x","grunt-karma":"0.12.x","karma":"0.13.x","karma-qunit":"0.1.x","karma-chrome-launcher":"0.2.x","karma-ie-launcher":"0.2.x","karma-firefox-launcher":"0.1.x","karma-phantomjs-launcher":"0.2.x","karma-phantomjs2-launcher":"^0.3.2","promises-aplus-tests":"2.1.x","eslint":"1.3.x"},"scripts":{"grunt":"grunt","lint":"eslint es5 es6 es7 js web core fn modules","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter","test":"npm run lint && npm run grunt client livescript karma:continuous && npm run promises-tests && lsc tests/commonjs","lt":"npm run lint && npm run grunt client livescript karma:lt && npm run promises-tests && lsc tests/commonjs"},"license":"MIT","keywords":["ES5","ECMAScript 5","ES6","ECMAScript 6","ES7","ECMAScript 7","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","Array generics","setImmediate","Dict","partial application"],"gitHead":"31440ba436945fc231722ab71a23c13ccfa25b01","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js#readme","_id":"core-js@1.1.3","_shasum":"01b32e3266048d120c3b061756948b285700f970","_from":".","_npmVersion":"2.13.3","_nodeVersion":"3.0.0","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"dist":{"shasum":"01b32e3266048d120c3b061756948b285700f970","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-1.1.3.tgz"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"directories":{}},"1.1.4":{"name":"core-js","description":"Standard library","version":"1.1.4","repository":{"type":"git","url":"git+https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"webpack":"1.12.x","LiveScript":"1.3.x","grunt":"0.4.x","grunt-cli":"0.1.x","grunt-livescript":"0.5.x","grunt-contrib-uglify":"0.9.x","grunt-contrib-watch":"0.6.x","grunt-contrib-clean":"0.6.x","grunt-contrib-copy":"0.8.x","grunt-karma":"0.12.x","karma":"0.13.x","karma-qunit":"0.1.x","karma-chrome-launcher":"0.2.x","karma-ie-launcher":"0.2.x","karma-firefox-launcher":"0.1.x","karma-phantomjs-launcher":"0.2.x","karma-phantomjs2-launcher":"^0.3.2","promises-aplus-tests":"2.1.x","eslint":"1.3.x"},"scripts":{"grunt":"grunt","lint":"eslint es5 es6 es7 js web core fn modules","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter","test":"npm run lint && npm run grunt livescript client karma:continuous library karma:continuous-library && npm run promises-tests && lsc tests/commonjs","lt":"npm run lint && npm run grunt livescript client karma:lt library karma:lt-library && npm run promises-tests && lsc tests/commonjs"},"license":"MIT","keywords":["ES5","ECMAScript 5","ES6","ECMAScript 6","ES7","ECMAScript 7","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","Array generics","setImmediate","Dict","partial application"],"gitHead":"77902780b95f958650ec48b4dda934712952d630","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js#readme","_id":"core-js@1.1.4","_shasum":"e0c75b4505ac3d2119db508b9a9ebabb368bfea3","_from":".","_npmVersion":"2.13.3","_nodeVersion":"3.0.0","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"dist":{"shasum":"e0c75b4505ac3d2119db508b9a9ebabb368bfea3","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-1.1.4.tgz"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"directories":{}},"1.2.0":{"name":"core-js","description":"Standard library","version":"1.2.0","repository":{"type":"git","url":"git+https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"webpack":"1.12.x","LiveScript":"1.3.x","grunt":"0.4.x","grunt-cli":"0.1.x","grunt-livescript":"0.5.x","grunt-contrib-uglify":"0.9.x","grunt-contrib-watch":"0.6.x","grunt-contrib-clean":"0.6.x","grunt-contrib-copy":"0.8.x","grunt-karma":"0.12.x","karma":"0.13.x","karma-qunit":"0.1.x","karma-chrome-launcher":"0.2.x","karma-ie-launcher":"0.2.x","karma-firefox-launcher":"0.1.x","karma-phantomjs-launcher":"0.2.x","karma-phantomjs2-launcher":"^0.3.2","promises-aplus-tests":"2.1.x","eslint":"1.5.x"},"scripts":{"grunt":"grunt","lint":"eslint es5 es6 es7 js web core fn modules","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter","test":"npm run lint && npm run grunt livescript client karma:continuous library karma:continuous-library && npm run promises-tests && lsc tests/commonjs","lt":"npm run lint && npm run grunt livescript client karma:lt library karma:lt-library && npm run promises-tests && lsc tests/commonjs"},"license":"MIT","keywords":["ES5","ECMAScript 5","ES6","ECMAScript 6","ES7","ECMAScript 7","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","Array generics","setImmediate","Dict","partial application"],"gitHead":"69651bee22f74a049e219e200af4abdd09bfa884","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js#readme","_id":"core-js@1.2.0","_shasum":"62b37f6ee0e6f991df0c1bc6c1abfe834319dc9e","_from":".","_npmVersion":"2.14.3","_nodeVersion":"4.1.0","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"dist":{"shasum":"62b37f6ee0e6f991df0c1bc6c1abfe834319dc9e","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-1.2.0.tgz"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"directories":{}},"1.2.1":{"name":"core-js","description":"Standard library","version":"1.2.1","repository":{"type":"git","url":"git+https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"webpack":"1.12.x","LiveScript":"1.3.x","grunt":"0.4.x","grunt-cli":"0.1.x","grunt-livescript":"0.5.x","grunt-contrib-uglify":"0.9.x","grunt-contrib-watch":"0.6.x","grunt-contrib-clean":"0.6.x","grunt-contrib-copy":"0.8.x","grunt-karma":"0.12.x","karma":"0.13.x","karma-qunit":"0.1.x","karma-chrome-launcher":"0.2.x","karma-ie-launcher":"0.2.x","karma-firefox-launcher":"0.1.x","karma-phantomjs-launcher":"0.2.x","karma-phantomjs2-launcher":"^0.3.2","promises-aplus-tests":"2.1.x","eslint":"1.5.x"},"scripts":{"grunt":"grunt","lint":"eslint es5 es6 es7 js web core fn modules","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter","test":"npm run lint && npm run grunt livescript client karma:continuous library karma:continuous-library && npm run promises-tests && lsc tests/commonjs","lt":"npm run lint && npm run grunt livescript client karma:lt library karma:lt-library && npm run promises-tests && lsc tests/commonjs"},"license":"MIT","keywords":["ES5","ECMAScript 5","ES6","ECMAScript 6","ES7","ECMAScript 7","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","Array generics","setImmediate","Dict","partial application"],"gitHead":"02da3db84b593a4c731c73b9907afb993acdf362","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js#readme","_id":"core-js@1.2.1","_shasum":"9b73151ce01498da09f75629810718065d06b700","_from":".","_npmVersion":"2.14.3","_nodeVersion":"4.1.0","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"dist":{"shasum":"9b73151ce01498da09f75629810718065d06b700","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-1.2.1.tgz"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"directories":{}},"1.2.2":{"name":"core-js","description":"Standard library","version":"1.2.2","repository":{"type":"git","url":"git+https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"webpack":"1.12.x","LiveScript":"1.3.x","grunt":"0.4.x","grunt-cli":"0.1.x","grunt-livescript":"0.5.x","grunt-contrib-uglify":"0.9.x","grunt-contrib-watch":"0.6.x","grunt-contrib-clean":"0.6.x","grunt-contrib-copy":"0.8.x","grunt-karma":"0.12.x","karma":"0.13.x","karma-qunit":"0.1.x","karma-chrome-launcher":"0.2.x","karma-ie-launcher":"0.2.x","karma-firefox-launcher":"0.1.x","karma-phantomjs-launcher":"0.2.x","karma-phantomjs2-launcher":"^0.3.2","promises-aplus-tests":"2.1.x","eslint":"~1.7.1"},"scripts":{"grunt":"grunt","lint":"eslint es5 es6 es7 js web core fn modules","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter","test":"npm run lint && npm run grunt livescript client karma:continuous library karma:continuous-library && npm run promises-tests && lsc tests/commonjs","lt":"npm run lint && npm run grunt livescript client karma:lt library karma:lt-library && npm run promises-tests && lsc tests/commonjs"},"license":"MIT","keywords":["ES5","ECMAScript 5","ES6","ECMAScript 6","ES7","ECMAScript 7","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","Array generics","setImmediate","Dict","partial application"],"gitHead":"928f8a7c5b3ba96e23fb7c2931ab1b1d0b7e3d26","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js#readme","_id":"core-js@1.2.2","_shasum":"f45eede52485579b6026c8a8628472b9f7960cae","_from":".","_npmVersion":"3.3.9","_nodeVersion":"4.2.1","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"dist":{"shasum":"f45eede52485579b6026c8a8628472b9f7960cae","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-1.2.2.tgz"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"directories":{}},"1.2.3":{"name":"core-js","description":"Standard library","version":"1.2.3","repository":{"type":"git","url":"git+https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"webpack":"1.12.x","LiveScript":"1.3.x","grunt":"0.4.x","grunt-cli":"0.1.x","grunt-livescript":"0.5.x","grunt-contrib-uglify":"0.9.x","grunt-contrib-watch":"0.6.x","grunt-contrib-clean":"0.6.x","grunt-contrib-copy":"0.8.x","grunt-karma":"0.12.x","karma":"0.13.x","karma-qunit":"0.1.x","karma-chrome-launcher":"0.2.x","karma-ie-launcher":"0.2.x","karma-firefox-launcher":"0.1.x","karma-phantomjs-launcher":"0.2.x","karma-phantomjs2-launcher":"^0.3.2","promises-aplus-tests":"2.1.x","eslint":"~1.7.1"},"scripts":{"grunt":"grunt","lint":"eslint es5 es6 es7 js web core fn modules","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter","test":"npm run lint && npm run grunt livescript client karma:continuous library karma:continuous-library && npm run promises-tests && lsc tests/commonjs","lt":"npm run lint && npm run grunt livescript client karma:lt library karma:lt-library && npm run promises-tests && lsc tests/commonjs"},"license":"MIT","keywords":["ES5","ECMAScript 5","ES6","ECMAScript 6","ES7","ECMAScript 7","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","Array generics","setImmediate","Dict","partial application"],"gitHead":"fb0890f32dabe8d4d88a4350d1b268446127132e","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js#readme","_id":"core-js@1.2.3","_shasum":"4cf03d1c84f9cf6cc94a37dac67f345f6ea9209a","_from":".","_npmVersion":"3.3.9","_nodeVersion":"4.2.1","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"dist":{"shasum":"4cf03d1c84f9cf6cc94a37dac67f345f6ea9209a","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-1.2.3.tgz"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"directories":{}},"1.2.4":{"name":"core-js","description":"Standard library","version":"1.2.4","repository":{"type":"git","url":"git+https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"webpack":"1.12.x","LiveScript":"1.3.x","grunt":"0.4.x","grunt-cli":"0.1.x","grunt-livescript":"0.5.x","grunt-contrib-uglify":"0.10.x","grunt-contrib-watch":"0.6.x","grunt-contrib-clean":"0.6.x","grunt-contrib-copy":"0.8.x","grunt-karma":"0.12.x","karma":"0.13.x","karma-qunit":"0.1.x","karma-chrome-launcher":"0.2.x","karma-ie-launcher":"0.2.x","karma-firefox-launcher":"0.1.x","karma-phantomjs-launcher":"0.2.x","promises-aplus-tests":"2.1.x","eslint":"1.8.x"},"scripts":{"grunt":"grunt","lint":"eslint es5 es6 es7 js web core fn modules","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter","test":"npm run lint && npm run grunt livescript client karma:continuous library karma:continuous-library && npm run promises-tests && lsc tests/commonjs"},"license":"MIT","keywords":["ES5","ECMAScript 5","ES6","ECMAScript 6","ES7","ECMAScript 7","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","Array generics","setImmediate","Dict","partial application"],"gitHead":"ba0d44f5c7cb993a861d4558dc29d0de1b89aec6","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js#readme","_id":"core-js@1.2.4","_shasum":"b4cf44d4dc7f906d3c2d7ba12ce8c067de4d47df","_from":".","_npmVersion":"3.3.9","_nodeVersion":"4.2.1","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"dist":{"shasum":"b4cf44d4dc7f906d3c2d7ba12ce8c067de4d47df","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-1.2.4.tgz"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"directories":{}},"1.2.5":{"name":"core-js","description":"Standard library","version":"1.2.5","repository":{"type":"git","url":"git+https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"webpack":"1.12.x","LiveScript":"1.3.x","grunt":"0.4.x","grunt-cli":"0.1.x","grunt-livescript":"0.5.x","grunt-contrib-uglify":"0.10.x","grunt-contrib-watch":"0.6.x","grunt-contrib-clean":"0.6.x","grunt-contrib-copy":"0.8.x","grunt-karma":"0.12.x","karma":"0.13.x","karma-qunit":"0.1.x","karma-chrome-launcher":"0.2.x","karma-ie-launcher":"0.2.x","karma-firefox-launcher":"0.1.x","karma-phantomjs-launcher":"0.2.x","promises-aplus-tests":"2.1.x","eslint":"1.8.x"},"scripts":{"grunt":"grunt","lint":"eslint es5 es6 es7 js web core fn modules","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter","test":"npm run lint && npm run grunt livescript client karma:continuous library karma:continuous-library && npm run promises-tests && lsc tests/commonjs"},"license":"MIT","keywords":["ES5","ECMAScript 5","ES6","ECMAScript 6","ES7","ECMAScript 7","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","Array generics","setImmediate","Dict","partial application"],"gitHead":"3e36cc001a9d1a929cdd62358cd282a408b0d93e","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js#readme","_id":"core-js@1.2.5","_shasum":"020ac0f22d85045d6877c2010284236cf117a606","_from":".","_npmVersion":"3.3.9","_nodeVersion":"4.2.1","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"dist":{"shasum":"020ac0f22d85045d6877c2010284236cf117a606","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-1.2.5.tgz"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"directories":{}},"1.2.6":{"name":"core-js","description":"Standard library","version":"1.2.6","repository":{"type":"git","url":"git+https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"webpack":"1.12.x","LiveScript":"1.3.x","grunt":"0.4.x","grunt-cli":"0.1.x","grunt-livescript":"0.5.x","grunt-contrib-uglify":"0.10.x","grunt-contrib-watch":"0.6.x","grunt-contrib-clean":"0.6.x","grunt-contrib-copy":"0.8.x","grunt-karma":"0.12.x","karma":"0.13.x","karma-qunit":"0.1.x","karma-chrome-launcher":"0.2.x","karma-ie-launcher":"0.2.x","karma-firefox-launcher":"0.1.x","karma-phantomjs-launcher":"0.2.x","promises-aplus-tests":"2.1.x","eslint":"1.9.x"},"scripts":{"grunt":"grunt","lint":"eslint es5 es6 es7 js web core fn modules","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter","test":"npm run lint && npm run grunt livescript client karma:continuous library karma:continuous-library && npm run promises-tests && lsc tests/commonjs"},"license":"MIT","keywords":["ES5","ECMAScript 5","ES6","ECMAScript 6","ES7","ECMAScript 7","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","Array generics","setImmediate","Dict","partial application"],"gitHead":"280a87d5b3fdbc067c589b2bf960edb1ea12e03c","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js#readme","_id":"core-js@1.2.6","_shasum":"e2351f6cae764f8c34e5d839acb6a60cef8b4a45","_from":".","_npmVersion":"3.3.9","_nodeVersion":"4.2.1","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"dist":{"shasum":"e2351f6cae764f8c34e5d839acb6a60cef8b4a45","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-1.2.6.tgz"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"directories":{}},"2.0.0-alpha":{"name":"core-js","description":"Standard library","version":"2.0.0-alpha","repository":{"type":"git","url":"git+https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"webpack":"1.12.x","LiveScript":"1.3.x","grunt":"0.4.x","grunt-cli":"0.1.x","grunt-livescript":"0.5.x","grunt-contrib-uglify":"0.11.x","grunt-contrib-watch":"0.6.x","grunt-contrib-clean":"0.7.x","grunt-contrib-copy":"0.8.x","grunt-karma":"0.12.x","karma":"0.13.x","karma-qunit":"0.1.x","karma-chrome-launcher":"0.2.x","karma-ie-launcher":"0.2.x","karma-firefox-launcher":"0.1.x","karma-phantomjs-launcher":"0.2.x","promises-aplus-tests":"2.1.x","eslint":"1.10.x","temp":"0.8.x"},"scripts":{"grunt":"grunt","lint":"eslint es5 es6 es7 web core fn modules","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter","test":"npm run lint && npm run grunt livescript client karma:continuous library karma:continuous-library && npm run promises-tests && lsc tests/commonjs"},"license":"MIT","keywords":["ES5","ECMAScript 5","ES6","ECMAScript 6","ES7","ECMAScript 7","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","setImmediate","Dict","partial application"],"gitHead":"3483ed3cd3cd51436b7286bb7635ea03d5ec2045","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js#readme","_id":"core-js@2.0.0-alpha","_shasum":"93726eab4be3627c8fbc8d889a8a41571a9487c4","_from":".","_npmVersion":"3.3.9","_nodeVersion":"5.1.0","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"dist":{"shasum":"93726eab4be3627c8fbc8d889a8a41571a9487c4","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-2.0.0-alpha.tgz"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"directories":{}},"2.0.0-beta":{"name":"core-js","description":"Standard library","version":"2.0.0-beta","repository":{"type":"git","url":"git+https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"webpack":"1.12.x","LiveScript":"1.3.x","grunt":"0.4.x","grunt-cli":"0.1.x","grunt-livescript":"0.6.x","grunt-contrib-uglify":"0.11.x","grunt-contrib-watch":"0.6.x","grunt-contrib-clean":"0.7.x","grunt-contrib-copy":"0.8.x","grunt-karma":"0.12.x","karma":"0.13.x","karma-qunit":"0.1.x","karma-chrome-launcher":"0.2.x","karma-ie-launcher":"0.2.x","karma-firefox-launcher":"0.1.x","karma-phantomjs-launcher":"0.2.x","promises-aplus-tests":"2.1.x","eslint":"1.10.x","temp":"0.8.x"},"scripts":{"grunt":"grunt","lint":"eslint es5 es6 es7 stage web core fn modules","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter","test":"npm run lint && npm run grunt livescript client karma:continuous library karma:continuous-library && npm run promises-tests && lsc tests/commonjs"},"license":"MIT","keywords":["ES3","ECMAScript 3","ES5","ECMAScript 5","ES6","ES2015","ECMAScript 6","ECMAScript 2015","ES7","ES2016","ECMAScript 7","ECMAScript 2016","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","setImmediate","Dict","polyfill","shim"],"gitHead":"c59edd121f4c3a51a0ee6332d11b727a28e577f8","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js#readme","_id":"core-js@2.0.0-beta","_shasum":"3bf6419183cc117cd0aef7adfb4fcbd24634702a","_from":".","_npmVersion":"3.3.9","_nodeVersion":"5.1.0","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"dist":{"shasum":"3bf6419183cc117cd0aef7adfb4fcbd24634702a","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-2.0.0-beta.tgz"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"directories":{}},"2.0.0-beta.2":{"name":"core-js","description":"Standard library","version":"2.0.0-beta.2","repository":{"type":"git","url":"git+https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"webpack":"1.12.x","LiveScript":"1.3.x","grunt":"0.4.x","grunt-cli":"0.1.x","grunt-livescript":"0.6.x","grunt-contrib-uglify":"0.11.x","grunt-contrib-watch":"0.6.x","grunt-contrib-clean":"0.7.x","grunt-contrib-copy":"0.8.x","grunt-karma":"0.12.x","karma":"0.13.x","karma-qunit":"0.1.x","karma-chrome-launcher":"0.2.x","karma-ie-launcher":"0.2.x","karma-firefox-launcher":"0.1.x","karma-phantomjs-launcher":"0.2.x","promises-aplus-tests":"2.1.x","eslint":"1.10.x","temp":"0.8.x"},"scripts":{"grunt":"grunt","lint":"eslint es5 es6 es7 stage web core fn modules","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter","test":"npm run lint && npm run grunt livescript client karma:default && npm run grunt library karma:library && npm run promises-tests && lsc tests/commonjs"},"license":"MIT","keywords":["ES3","ECMAScript 3","ES5","ECMAScript 5","ES6","ES2015","ECMAScript 6","ECMAScript 2015","ES7","ES2016","ECMAScript 7","ECMAScript 2016","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","TypedArray","setImmediate","Dict","polyfill","shim"],"gitHead":"485b92f3fca9b6359be0429c44ea8517b0b39871","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js#readme","_id":"core-js@2.0.0-beta.2","_shasum":"2af7dcb531858e2a3dda7e65cc2e92178179d006","_from":".","_npmVersion":"3.3.9","_nodeVersion":"5.1.0","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"dist":{"shasum":"2af7dcb531858e2a3dda7e65cc2e92178179d006","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-2.0.0-beta.2.tgz"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"directories":{}},"2.0.0":{"name":"core-js","description":"Standard library","version":"2.0.0","repository":{"type":"git","url":"git+https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"webpack":"1.12.x","LiveScript":"1.3.x","grunt":"0.4.x","grunt-cli":"0.1.x","grunt-livescript":"0.6.x","grunt-contrib-uglify":"0.11.x","grunt-contrib-watch":"0.6.x","grunt-contrib-clean":"0.7.x","grunt-contrib-copy":"0.8.x","grunt-karma":"0.12.x","karma":"0.13.x","karma-qunit":"0.1.x","karma-chrome-launcher":"0.2.x","karma-ie-launcher":"0.2.x","karma-firefox-launcher":"0.1.x","karma-phantomjs-launcher":"0.2.x","promises-aplus-tests":"2.1.x","eslint":"1.10.x","temp":"0.8.x"},"scripts":{"grunt":"grunt","lint":"eslint es5 es6 es7 stage web core fn modules","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter","test":"npm run lint && npm run grunt livescript client karma:default && npm run grunt library karma:library && npm run promises-tests && lsc tests/commonjs"},"license":"MIT","keywords":["ES3","ECMAScript 3","ES5","ECMAScript 5","ES6","ES2015","ECMAScript 6","ECMAScript 2015","ES7","ES2016","ECMAScript 7","ECMAScript 2016","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","TypedArray","setImmediate","Dict","polyfill","shim"],"gitHead":"0160b946fe94c16a6c85e46122fee7daa01387b6","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js#readme","_id":"core-js@2.0.0","_shasum":"bc834a8c48dd62a176145f4866ba8a93e2e3ddbf","_from":".","_npmVersion":"3.3.9","_nodeVersion":"5.3.0","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"dist":{"shasum":"bc834a8c48dd62a176145f4866ba8a93e2e3ddbf","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-2.0.0.tgz"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"directories":{}},"2.0.1":{"name":"core-js","description":"Standard library","version":"2.0.1","repository":{"type":"git","url":"git+https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"webpack":"1.12.x","LiveScript":"1.3.x","grunt":"0.4.x","grunt-cli":"0.1.x","grunt-livescript":"0.6.x","grunt-contrib-uglify":"0.11.x","grunt-contrib-watch":"0.6.x","grunt-contrib-clean":"0.7.x","grunt-contrib-copy":"0.8.x","grunt-karma":"0.12.x","karma":"0.13.x","karma-qunit":"0.1.x","karma-chrome-launcher":"0.2.x","karma-ie-launcher":"0.2.x","karma-firefox-launcher":"0.1.x","karma-phantomjs-launcher":"0.2.x","promises-aplus-tests":"2.1.x","eslint":"1.10.x","temp":"0.8.x"},"scripts":{"grunt":"grunt","lint":"eslint es5 es6 es7 stage web core fn modules","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter","test":"npm run lint && npm run grunt livescript client karma:default && npm run grunt library karma:library && npm run promises-tests && lsc tests/commonjs"},"license":"MIT","keywords":["ES3","ECMAScript 3","ES5","ECMAScript 5","ES6","ES2015","ECMAScript 6","ECMAScript 2015","ES7","ES2016","ECMAScript 7","ECMAScript 2016","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","TypedArray","setImmediate","Dict","polyfill","shim"],"gitHead":"668c14a6874cf4c2e39e6b3009ce6730be415251","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js#readme","_id":"core-js@2.0.1","_shasum":"b780faf79e9b00482cedea30414766f4d910cc44","_from":".","_npmVersion":"3.3.9","_nodeVersion":"5.3.0","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"dist":{"shasum":"b780faf79e9b00482cedea30414766f4d910cc44","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-2.0.1.tgz"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"directories":{}},"2.0.2":{"name":"core-js","description":"Standard library","version":"2.0.2","repository":{"type":"git","url":"git+https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"webpack":"1.12.x","LiveScript":"1.3.x","grunt":"0.4.x","grunt-cli":"0.1.x","grunt-livescript":"0.6.x","grunt-contrib-uglify":"0.11.x","grunt-contrib-watch":"0.6.x","grunt-contrib-clean":"0.7.x","grunt-contrib-copy":"0.8.x","grunt-karma":"0.12.x","karma":"0.13.x","karma-qunit":"0.1.x","karma-chrome-launcher":"0.2.x","karma-ie-launcher":"0.2.x","karma-firefox-launcher":"0.1.x","karma-phantomjs-launcher":"0.2.x","promises-aplus-tests":"2.1.x","eslint":"1.10.x","temp":"0.8.x"},"scripts":{"grunt":"grunt","lint":"eslint es5 es6 es7 stage web core fn modules","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter","test":"npm run lint && npm run grunt livescript client karma:default && npm run grunt library karma:library && npm run promises-tests && lsc tests/commonjs"},"license":"MIT","keywords":["ES3","ECMAScript 3","ES5","ECMAScript 5","ES6","ES2015","ECMAScript 6","ECMAScript 2015","ES7","ES2016","ECMAScript 7","ECMAScript 2016","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","TypedArray","setImmediate","Dict","polyfill","shim"],"gitHead":"9c5801d6d63e82d634b0fbcb843640ed715f5c00","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js#readme","_id":"core-js@2.0.2","_shasum":"585e02db59551d41c81ee1fd0d0e9312c36beb80","_from":".","_npmVersion":"3.3.9","_nodeVersion":"5.3.0","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"dist":{"shasum":"585e02db59551d41c81ee1fd0d0e9312c36beb80","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-2.0.2.tgz"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"directories":{}},"2.0.3":{"name":"core-js","description":"Standard library","version":"2.0.3","repository":{"type":"git","url":"git+https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"webpack":"1.12.x","LiveScript":"1.3.x","grunt":"0.4.x","grunt-cli":"0.1.x","grunt-livescript":"0.6.x","grunt-contrib-uglify":"0.11.x","grunt-contrib-watch":"0.6.x","grunt-contrib-clean":"0.7.x","grunt-contrib-copy":"0.8.x","grunt-karma":"0.12.x","karma":"0.13.x","karma-qunit":"0.1.x","karma-chrome-launcher":"0.2.x","karma-ie-launcher":"0.2.x","karma-firefox-launcher":"0.1.x","karma-phantomjs-launcher":"0.2.x","qunitjs":"1.20.x","phantomjs":"1.9.x","promises-aplus-tests":"2.1.x","eslint":"1.10.x","temp":"0.8.x"},"scripts":{"grunt":"grunt","lint":"eslint es5 es6 es7 stage web core fn modules","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter","test":"npm run lint && npm run grunt livescript client karma:default && npm run grunt library karma:library && npm run promises-tests && lsc tests/commonjs"},"license":"MIT","keywords":["ES3","ECMAScript 3","ES5","ECMAScript 5","ES6","ES2015","ECMAScript 6","ECMAScript 2015","ES7","ES2016","ECMAScript 7","ECMAScript 2016","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","TypedArray","setImmediate","Dict","polyfill","shim"],"gitHead":"ab92628889374b727c9a792c70c51a7f527e3af7","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js#readme","_id":"core-js@2.0.3","_shasum":"50875bfd128723373b8400f6bfcfe75134548cd2","_from":".","_npmVersion":"3.3.9","_nodeVersion":"5.3.0","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"dist":{"shasum":"50875bfd128723373b8400f6bfcfe75134548cd2","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-2.0.3.tgz"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"directories":{}},"2.1.0":{"name":"core-js","description":"Standard library","version":"2.1.0","repository":{"type":"git","url":"git+https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"webpack":"1.12.x","LiveScript":"1.3.x","grunt":"0.4.x","grunt-cli":"0.1.x","grunt-livescript":"0.6.x","grunt-contrib-uglify":"0.11.x","grunt-contrib-watch":"0.6.x","grunt-contrib-clean":"0.7.x","grunt-contrib-copy":"0.8.x","grunt-karma":"0.12.x","karma":"0.13.x","karma-qunit":"0.1.x","karma-chrome-launcher":"0.2.x","karma-ie-launcher":"0.2.x","karma-firefox-launcher":"0.1.x","karma-phantomjs-launcher":"1.0.x","qunitjs":"1.21.x","phantomjs-prebuilt":"2.1.x","promises-aplus-tests":"2.1.x","eslint":"1.10.x","temp":"0.8.x"},"scripts":{"grunt":"grunt","lint":"eslint es5 es6 es7 stage web core fn modules","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter","test":"npm run lint && npm run grunt livescript client karma:default && npm run grunt library karma:library && npm run promises-tests && lsc tests/commonjs"},"license":"MIT","keywords":["ES3","ECMAScript 3","ES5","ECMAScript 5","ES6","ES2015","ECMAScript 6","ECMAScript 2015","ES7","ES2016","ECMAScript 7","ECMAScript 2016","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","TypedArray","setImmediate","Dict","polyfill","shim"],"gitHead":"bd87b8b71f3a0833a2fe93f01092766527a016de","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js#readme","_id":"core-js@2.1.0","_shasum":"61ccc74db6358a5e311cb5757f8511838b4f356f","_from":".","_npmVersion":"3.3.9","_nodeVersion":"5.5.0","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"dist":{"shasum":"61ccc74db6358a5e311cb5757f8511838b4f356f","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-2.1.0.tgz"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/core-js-2.1.0.tgz_1454974345705_0.6095059337094426"},"directories":{}},"2.1.1":{"name":"core-js","description":"Standard library","version":"2.1.1","repository":{"type":"git","url":"git+https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"webpack":"1.12.x","LiveScript":"1.3.x","grunt":"0.4.x","grunt-cli":"0.1.x","grunt-livescript":"0.6.x","grunt-contrib-uglify":"0.11.x","grunt-contrib-watch":"0.6.x","grunt-contrib-clean":"1.0.x","grunt-contrib-copy":"0.8.x","grunt-karma":"0.12.x","karma":"0.13.x","karma-qunit":"0.1.x","karma-chrome-launcher":"0.2.x","karma-ie-launcher":"0.2.x","karma-firefox-launcher":"0.1.x","karma-phantomjs-launcher":"1.0.x","qunitjs":"1.21.x","phantomjs-prebuilt":"2.1.x","promises-aplus-tests":"2.1.x","eslint":"2.2.x","temp":"0.8.x"},"scripts":{"grunt":"grunt","lint":"eslint es5 es6 es7 stage web core fn modules","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter","test":"npm run lint && npm run grunt livescript client karma:default && npm run grunt library karma:library && npm run promises-tests && lsc tests/commonjs"},"license":"MIT","keywords":["ES3","ECMAScript 3","ES5","ECMAScript 5","ES6","ES2015","ECMAScript 6","ECMAScript 2015","ES7","ES2016","ECMAScript 7","ECMAScript 2016","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","TypedArray","setImmediate","Dict","polyfill","shim"],"gitHead":"b4cdd5b230511e735372971e39397aba3703c54d","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js#readme","_id":"core-js@2.1.1","_shasum":"2cb9efb834cb04f56bb0d8e521b0540a5aef528f","_from":".","_npmVersion":"3.3.9","_nodeVersion":"5.5.0","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"dist":{"shasum":"2cb9efb834cb04f56bb0d8e521b0540a5aef528f","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-2.1.1.tgz"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/core-js-2.1.1.tgz_1456114159476_0.9208594844676554"},"directories":{}},"2.1.2":{"name":"core-js","description":"Standard library","version":"2.1.2","repository":{"type":"git","url":"git+https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"webpack":"1.12.x","LiveScript":"1.3.x","grunt":"0.4.x","grunt-cli":"0.1.x","grunt-livescript":"0.6.x","grunt-contrib-uglify":"0.11.x","grunt-contrib-watch":"0.6.x","grunt-contrib-clean":"1.0.x","grunt-contrib-copy":"0.8.x","grunt-karma":"0.12.x","karma":"0.13.x","karma-qunit":"0.1.x","karma-chrome-launcher":"0.2.x","karma-ie-launcher":"0.2.x","karma-firefox-launcher":"0.1.x","karma-phantomjs-launcher":"1.0.x","qunitjs":"1.22.x","phantomjs-prebuilt":"2.1.x","promises-aplus-tests":"2.1.x","eslint":"2.2.x","temp":"0.8.x"},"scripts":{"grunt":"grunt","lint":"eslint es5 es6 es7 stage web core fn modules","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter","test":"npm run lint && npm run grunt livescript client karma:default && npm run grunt library karma:library && npm run promises-tests && lsc tests/commonjs"},"license":"MIT","keywords":["ES3","ECMAScript 3","ES5","ECMAScript 5","ES6","ES2015","ECMAScript 6","ECMAScript 2015","ES7","ES2016","ECMAScript 7","ECMAScript 2016","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","TypedArray","setImmediate","Dict","polyfill","shim"],"gitHead":"7cb0ef6b399dab4b5ae5ec14d139afe2ed367367","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js#readme","_id":"core-js@2.1.2","_shasum":"6604594580096db09897dcfaa52c2a4d9243a420","_from":".","_npmVersion":"3.3.9","_nodeVersion":"5.7.0","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"dist":{"shasum":"6604594580096db09897dcfaa52c2a4d9243a420","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-2.1.2.tgz"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"_npmOperationalInternal":{"host":"packages-5-east.internal.npmjs.com","tmp":"tmp/core-js-2.1.2.tgz_1456721128316_0.963237741496414"},"directories":{}},"2.1.3":{"name":"core-js","description":"Standard library","version":"2.1.3","repository":{"type":"git","url":"git+https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"webpack":"1.12.x","LiveScript":"1.3.x","grunt":"0.4.x","grunt-cli":"0.1.x","grunt-livescript":"0.6.x","grunt-contrib-uglify":"0.11.x","grunt-contrib-watch":"0.6.x","grunt-contrib-clean":"1.0.x","grunt-contrib-copy":"0.8.x","grunt-karma":"0.12.x","karma":"0.13.x","karma-qunit":"0.1.x","karma-chrome-launcher":"0.2.x","karma-ie-launcher":"0.2.x","karma-firefox-launcher":"0.1.x","karma-phantomjs-launcher":"1.0.x","qunitjs":"1.22.x","phantomjs-prebuilt":"2.1.x","promises-aplus-tests":"2.1.x","eslint":"2.2.x","temp":"0.8.x"},"scripts":{"grunt":"grunt","lint":"eslint es5 es6 es7 stage web core fn modules","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter","test":"npm run lint && npm run grunt livescript client karma:default && npm run grunt library karma:library && npm run promises-tests && lsc tests/commonjs"},"license":"MIT","keywords":["ES3","ECMAScript 3","ES5","ECMAScript 5","ES6","ES2015","ECMAScript 6","ECMAScript 2015","ES7","ES2016","ECMAScript 7","ECMAScript 2016","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","TypedArray","setImmediate","Dict","polyfill","shim"],"gitHead":"2447561217e9512960bf140387320777e27975ae","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js#readme","_id":"core-js@2.1.3","_shasum":"1bb16b99bf8e01aa7bfd06d1a6c402b5b61154a8","_from":".","_npmVersion":"3.3.9","_nodeVersion":"5.7.0","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"dist":{"shasum":"1bb16b99bf8e01aa7bfd06d1a6c402b5b61154a8","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-2.1.3.tgz"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/core-js-2.1.3.tgz_1456766761961_0.8116176498588175"},"directories":{}},"2.1.4":{"name":"core-js","description":"Standard library","version":"2.1.4","repository":{"type":"git","url":"git+https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"webpack":"1.12.x","LiveScript":"1.3.x","grunt":"0.4.x","grunt-cli":"0.1.x","grunt-livescript":"0.6.x","grunt-contrib-uglify":"1.0.x","grunt-contrib-watch":"0.6.x","grunt-contrib-clean":"1.0.x","grunt-contrib-copy":"1.0.x","grunt-karma":"0.12.x","karma":"0.13.x","karma-qunit":"0.1.x","karma-chrome-launcher":"0.2.x","karma-ie-launcher":"0.2.x","karma-firefox-launcher":"0.1.x","karma-phantomjs-launcher":"1.0.x","qunitjs":"1.22.x","phantomjs-prebuilt":"2.1.x","promises-aplus-tests":"2.1.x","eslint":"2.3.x","temp":"0.8.x"},"scripts":{"grunt":"grunt","lint":"eslint es5 es6 es7 stage web core fn modules","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter","test":"npm run lint && npm run grunt livescript client karma:default && npm run grunt library karma:library && npm run promises-tests && lsc tests/commonjs"},"license":"MIT","keywords":["ES3","ECMAScript 3","ES5","ECMAScript 5","ES6","ES2015","ECMAScript 6","ECMAScript 2015","ES7","ES2016","ECMAScript 7","ECMAScript 2016","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","TypedArray","setImmediate","Dict","polyfill","shim"],"gitHead":"b2c2ad9d728d8e9b196ec3ab233d34455988d1d8","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js#readme","_id":"core-js@2.1.4","_shasum":"44195220d94914aaf9987c7599afab263a51f75a","_from":".","_npmVersion":"3.3.9","_nodeVersion":"5.7.0","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"dist":{"shasum":"44195220d94914aaf9987c7599afab263a51f75a","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-2.1.4.tgz"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"_npmOperationalInternal":{"host":"packages-13-west.internal.npmjs.com","tmp":"tmp/core-js-2.1.4.tgz_1457458619149_0.716871778247878"},"directories":{}},"2.1.5":{"name":"core-js","description":"Standard library","version":"2.1.5","repository":{"type":"git","url":"git+https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"webpack":"1.12.x","LiveScript":"1.3.x","grunt":"0.4.x","grunt-cli":"0.1.x","grunt-livescript":"0.6.x","grunt-contrib-uglify":"1.0.x","grunt-contrib-watch":"0.6.x","grunt-contrib-clean":"1.0.x","grunt-contrib-copy":"1.0.x","grunt-karma":"0.12.x","karma":"0.13.x","karma-qunit":"0.1.x","karma-chrome-launcher":"0.2.x","karma-ie-launcher":"0.2.x","karma-firefox-launcher":"0.1.x","karma-phantomjs-launcher":"1.0.x","qunitjs":"1.22.x","phantomjs-prebuilt":"2.1.x","promises-aplus-tests":"2.1.x","eslint":"2.4.x","temp":"0.8.x"},"scripts":{"grunt":"grunt","lint":"eslint es5 es6 es7 stage web core fn modules","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter","test":"npm run lint && npm run grunt livescript client karma:default && npm run grunt library karma:library && npm run promises-tests && lsc tests/commonjs"},"license":"MIT","keywords":["ES3","ECMAScript 3","ES5","ECMAScript 5","ES6","ES2015","ECMAScript 6","ECMAScript 2015","ES7","ES2016","ECMAScript 7","ECMAScript 2016","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","TypedArray","setImmediate","Dict","polyfill","shim"],"gitHead":"4369fbb70d05e61e2ad990b179e377f4c3090031","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js#readme","_id":"core-js@2.1.5","_shasum":"9610a059abc2624e5be18b6e624dcb6a4ed4b46d","_from":".","_npmVersion":"3.3.9","_nodeVersion":"5.7.0","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"dist":{"shasum":"9610a059abc2624e5be18b6e624dcb6a4ed4b46d","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-2.1.5.tgz"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/core-js-2.1.5.tgz_1457780265197_0.08655733079649508"},"directories":{}},"2.2.0":{"name":"core-js","description":"Standard library","version":"2.2.0","repository":{"type":"git","url":"git+https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"webpack":"1.12.x","LiveScript":"1.3.x","grunt":"0.4.x","grunt-cli":"0.1.x","grunt-livescript":"0.6.x","grunt-contrib-uglify":"1.0.x","grunt-contrib-watch":"1.0.x","grunt-contrib-clean":"1.0.x","grunt-contrib-copy":"1.0.x","grunt-karma":"0.12.x","karma":"0.13.x","karma-qunit":"0.1.x","karma-chrome-launcher":"0.2.x","karma-ie-launcher":"0.2.x","karma-firefox-launcher":"0.1.x","karma-phantomjs-launcher":"1.0.x","qunitjs":"1.22.x","phantomjs-prebuilt":"2.1.x","promises-aplus-tests":"2.1.x","eslint":"2.4.x","temp":"0.8.x"},"scripts":{"grunt":"grunt","lint":"eslint es5 es6 es7 stage web core fn modules","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter","test":"npm run lint && npm run grunt livescript client karma:default && npm run grunt library karma:library && npm run promises-tests && lsc tests/commonjs"},"license":"MIT","keywords":["ES3","ECMAScript 3","ES5","ECMAScript 5","ES6","ES2015","ECMAScript 6","ECMAScript 2015","ES7","ES2016","ECMAScript 7","ECMAScript 2016","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","TypedArray","setImmediate","Dict","polyfill","shim"],"gitHead":"d67e2fb94fc638bf1aebf883088e4bcf49d31fa7","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js#readme","_id":"core-js@2.2.0","_shasum":"72d4ba20c0011999d3a343cbf1c1b1d4ca5e53d7","_from":".","_npmVersion":"3.3.9","_nodeVersion":"5.7.0","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"dist":{"shasum":"72d4ba20c0011999d3a343cbf1c1b1d4ca5e53d7","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-2.2.0.tgz"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/core-js-2.2.0.tgz_1458058029293_0.05631740274839103"},"directories":{}},"2.2.1":{"name":"core-js","description":"Standard library","version":"2.2.1","repository":{"type":"git","url":"git+https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"webpack":"1.12.x","LiveScript":"1.3.x","grunt":"0.4.x","grunt-cli":"0.1.x","grunt-livescript":"0.6.x","grunt-contrib-uglify":"1.0.x","grunt-contrib-watch":"1.0.x","grunt-contrib-clean":"1.0.x","grunt-contrib-copy":"1.0.x","grunt-karma":"0.12.x","karma":"0.13.x","karma-qunit":"0.1.x","karma-chrome-launcher":"0.2.x","karma-ie-launcher":"0.2.x","karma-firefox-launcher":"0.1.x","karma-phantomjs-launcher":"1.0.x","qunitjs":"1.22.x","phantomjs-prebuilt":"2.1.x","promises-aplus-tests":"2.1.x","eslint":"2.4.x","temp":"0.8.x"},"scripts":{"grunt":"grunt","lint":"eslint es5 es6 es7 stage web core fn modules","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter","test":"npm run lint && npm run grunt livescript client karma:default && npm run grunt library karma:library && npm run promises-tests && lsc tests/commonjs"},"license":"MIT","keywords":["ES3","ECMAScript 3","ES5","ECMAScript 5","ES6","ES2015","ECMAScript 6","ECMAScript 2015","ES7","ES2016","ECMAScript 7","ECMAScript 2016","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","TypedArray","setImmediate","Dict","polyfill","shim"],"gitHead":"e482646353b489e200a5ecccca6af5c01f0b4ef2","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js#readme","_id":"core-js@2.2.1","_shasum":"e809840c0650ccae87209b4b2f13ed2d2f9e4005","_from":".","_npmVersion":"3.3.9","_nodeVersion":"5.8.0","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"dist":{"shasum":"e809840c0650ccae87209b4b2f13ed2d2f9e4005","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-2.2.1.tgz"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/core-js-2.2.1.tgz_1458326248766_0.554607120808214"},"directories":{}},"2.2.2":{"name":"core-js","description":"Standard library","version":"2.2.2","repository":{"type":"git","url":"git+https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"webpack":"1.12.x","LiveScript":"1.3.x","grunt":"1.0.x","grunt-cli":"1.2.x","grunt-livescript":"0.6.x","grunt-contrib-uglify":"1.0.x","grunt-contrib-watch":"1.0.x","grunt-contrib-clean":"1.0.x","grunt-contrib-copy":"1.0.x","grunt-karma":"0.12.x","karma":"0.13.x","karma-qunit":"0.1.x","karma-chrome-launcher":"0.2.x","karma-ie-launcher":"0.2.x","karma-firefox-launcher":"0.1.x","karma-phantomjs-launcher":"1.0.x","qunitjs":"1.23.x","phantomjs-prebuilt":"2.1.x","promises-aplus-tests":"2.1.x","eslint":"2.7.x","temp":"0.8.x"},"scripts":{"grunt":"grunt","lint":"eslint es5 es6 es7 stage web core fn modules","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter","test":"npm run lint && npm run grunt livescript client karma:default && npm run grunt library karma:library && npm run promises-tests && lsc tests/commonjs"},"license":"MIT","keywords":["ES3","ECMAScript 3","ES5","ECMAScript 5","ES6","ES2015","ECMAScript 6","ECMAScript 2015","ES7","ES2016","ECMAScript 7","ECMAScript 2016","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","TypedArray","setImmediate","Dict","polyfill","shim"],"gitHead":"1165b27889a9c01e7f3e72e27c250cecb7c31487","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js#readme","_id":"core-js@2.2.2","_shasum":"79a0f3a9495507641a5bf7ce275fa494649180bf","_from":".","_npmVersion":"3.3.9","_nodeVersion":"5.8.0","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"dist":{"shasum":"79a0f3a9495507641a5bf7ce275fa494649180bf","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-2.2.2.tgz"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/core-js-2.2.2.tgz_1459945191242_0.08103835000656545"},"directories":{}},"2.3.0":{"name":"core-js","description":"Standard library","version":"2.3.0","repository":{"type":"git","url":"git+https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"webpack":"1.13.x","LiveScript":"1.3.x","grunt":"1.0.x","grunt-cli":"1.2.x","grunt-livescript":"0.6.x","grunt-contrib-uglify":"1.0.x","grunt-contrib-watch":"1.0.x","grunt-contrib-clean":"1.0.x","grunt-contrib-copy":"1.0.x","grunt-karma":"0.12.x","karma":"0.13.x","karma-qunit":"0.1.x","karma-chrome-launcher":"0.2.x","karma-ie-launcher":"0.2.x","karma-firefox-launcher":"0.1.x","karma-phantomjs-launcher":"1.0.x","qunitjs":"1.23.x","phantomjs-prebuilt":"2.1.x","promises-aplus-tests":"2.1.x","eslint":"2.8.x","temp":"0.8.x"},"scripts":{"grunt":"grunt","lint":"eslint es5 es6 es7 stage web core fn modules","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter","test":"npm run lint && npm run grunt livescript client karma:default && npm run grunt library karma:library && npm run promises-tests && lsc tests/commonjs"},"license":"MIT","keywords":["ES3","ECMAScript 3","ES5","ECMAScript 5","ES6","ES2015","ECMAScript 6","ECMAScript 2015","ES7","ES2016","ECMAScript 7","ECMAScript 2016","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","TypedArray","setImmediate","Dict","polyfill","shim"],"gitHead":"b5ad27939bc50add2d2079348b11e68b1f8abe7a","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js#readme","_id":"core-js@2.3.0","_shasum":"fab83fbb0b2d8dc85fa636c4b9d34c75420c6d65","_from":".","_npmVersion":"3.3.9","_nodeVersion":"5.8.0","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"dist":{"shasum":"fab83fbb0b2d8dc85fa636c4b9d34c75420c6d65","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-2.3.0.tgz"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/core-js-2.3.0.tgz_1461447306660_0.6458090427331626"},"directories":{}},"2.4.0":{"name":"core-js","description":"Standard library","version":"2.4.0","repository":{"type":"git","url":"git+https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"webpack":"1.13.x","LiveScript":"1.3.x","grunt":"1.0.x","grunt-cli":"1.2.x","grunt-livescript":"0.6.x","grunt-contrib-uglify":"1.0.x","grunt-contrib-watch":"1.0.x","grunt-contrib-clean":"1.0.x","grunt-contrib-copy":"1.0.x","grunt-karma":"1.0.x","karma":"0.13.x","karma-qunit":"1.0.x","karma-chrome-launcher":"1.0.x","karma-ie-launcher":"1.0.x","karma-firefox-launcher":"1.0.x","karma-phantomjs-launcher":"1.0.x","qunitjs":"1.23.x","phantomjs-prebuilt":"2.1.x","promises-aplus-tests":"2.1.x","es-observable-tests":"0.2.x","eslint":"2.9.x","temp":"0.8.x"},"scripts":{"grunt":"grunt","lint":"eslint es5 es6 es7 stage web core fn modules","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter","observables-tests":"node tests/observables/adapter && node tests/observables/adapter-library","test":"npm run lint && npm run grunt livescript client karma:default && npm run grunt library karma:library && npm run promises-tests && npm run observables-tests && lsc tests/commonjs"},"license":"MIT","keywords":["ES3","ECMAScript 3","ES5","ECMAScript 5","ES6","ES2015","ECMAScript 6","ECMAScript 2015","ES7","ES2016","ECMAScript 7","ECMAScript 2016","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","TypedArray","setImmediate","Dict","polyfill","shim"],"gitHead":"a08b6d46ea3f02a33b17df552e73078b42c5b78f","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js#readme","_id":"core-js@2.4.0","_shasum":"df408ab46d01aff91c01c3e7971935d422c54f81","_from":".","_npmVersion":"3.3.9","_nodeVersion":"6.0.0","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"dist":{"shasum":"df408ab46d01aff91c01c3e7971935d422c54f81","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-2.4.0.tgz"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/core-js-2.4.0.tgz_1462671379729_0.5747277433983982"},"directories":{}},"1.2.7":{"name":"core-js","description":"Standard library","version":"1.2.7","repository":{"type":"git","url":"git+https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"webpack":"1.12.x","LiveScript":"1.3.x","grunt":"0.4.x","grunt-cli":"0.1.x","grunt-livescript":"0.5.x","grunt-contrib-uglify":"0.10.x","grunt-contrib-watch":"0.6.x","grunt-contrib-clean":"0.6.x","grunt-contrib-copy":"0.8.x","grunt-karma":"0.12.x","karma":"0.13.x","karma-qunit":"0.1.x","karma-chrome-launcher":"0.2.x","karma-ie-launcher":"0.2.x","karma-firefox-launcher":"0.1.x","karma-phantomjs-launcher":"0.2.x","promises-aplus-tests":"2.1.x","eslint":"1.9.x","qunitjs":"1.23.x","phantomjs":"1.9.x"},"scripts":{"grunt":"grunt","lint":"eslint es5 es6 es7 js web core fn modules","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter","test":"npm run lint && npm run grunt livescript client karma:continuous library karma:continuous-library && npm run promises-tests && lsc tests/commonjs"},"license":"MIT","keywords":["ES5","ECMAScript 5","ES6","ECMAScript 6","ES7","ECMAScript 7","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","Array generics","setImmediate","Dict","partial application"],"gitHead":"11a0a09335b8afca5b489d3a503093d6f1fedd42","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js#readme","_id":"core-js@1.2.7","_shasum":"652294c14651db28fa93bd2d5ff2983a4f08c636","_from":".","_npmVersion":"3.9.5","_nodeVersion":"6.2.2","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"dist":{"shasum":"652294c14651db28fa93bd2d5ff2983a4f08c636","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-1.2.7.tgz"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/core-js-1.2.7.tgz_1468790518791_0.19032412697561085"},"directories":{}},"2.4.1":{"name":"core-js","description":"Standard library","version":"2.4.1","repository":{"type":"git","url":"git+https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"webpack":"1.13.x","LiveScript":"1.3.x","grunt":"1.0.x","grunt-cli":"1.2.x","grunt-livescript":"0.6.x","grunt-contrib-uglify":"1.0.x","grunt-contrib-watch":"1.0.x","grunt-contrib-clean":"1.0.x","grunt-contrib-copy":"1.0.x","grunt-karma":"2.0.x","karma":"1.1.x","karma-qunit":"1.1.x","karma-chrome-launcher":"1.0.x","karma-ie-launcher":"1.0.x","karma-firefox-launcher":"1.0.x","karma-phantomjs-launcher":"1.0.x","qunitjs":"2.0.x","phantomjs-prebuilt":"2.1.x","promises-aplus-tests":"2.1.x","es-observable-tests":"0.2.x","eslint":"3.1.x","temp":"0.8.x"},"scripts":{"grunt":"grunt","lint":"eslint es5 es6 es7 stage web core fn modules","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter","observables-tests":"node tests/observables/adapter && node tests/observables/adapter-library","test":"npm run lint && npm run grunt livescript client karma:default && npm run grunt library karma:library && npm run promises-tests && npm run observables-tests && lsc tests/commonjs"},"license":"MIT","keywords":["ES3","ECMAScript 3","ES5","ECMAScript 5","ES6","ES2015","ECMAScript 6","ECMAScript 2015","ES7","ES2016","ECMAScript 7","ECMAScript 2016","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","TypedArray","setImmediate","Dict","polyfill","shim"],"gitHead":"5e106f64c726edf2849f0babc9096ce6664b7368","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js#readme","_id":"core-js@2.4.1","_shasum":"4de911e667b0eae9124e34254b53aea6fc618d3e","_from":".","_npmVersion":"3.9.5","_nodeVersion":"6.2.2","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"dist":{"shasum":"4de911e667b0eae9124e34254b53aea6fc618d3e","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-2.4.1.tgz"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/core-js-2.4.1.tgz_1468791807265_0.5941079026088119"},"directories":{}},"2.5.0":{"name":"core-js","description":"Standard library","version":"2.5.0","repository":{"type":"git","url":"git+https://github.com/zloirock/core-js.git"},"main":"index.js","devDependencies":{"webpack":"3.4.x","LiveScript":"1.3.x","grunt":"1.0.x","grunt-cli":"1.2.x","grunt-livescript":"0.6.x","grunt-contrib-uglify":"3.0.x","grunt-contrib-watch":"1.0.x","grunt-contrib-clean":"1.1.x","grunt-contrib-copy":"1.0.x","grunt-karma":"2.0.x","karma":"1.7.x","karma-qunit":"1.2.x","karma-chrome-launcher":"2.2.x","karma-ie-launcher":"1.0.x","karma-firefox-launcher":"1.0.x","karma-phantomjs-launcher":"1.0.x","qunitjs":"2.4.x","phantomjs-prebuilt":"2.1.x","promises-aplus-tests":"2.1.x","es-observable-tests":"0.2.x","eslint":"4.4.x","eslint-plugin-import":"2.7.x","temp":"0.8.x"},"scripts":{"grunt":"grunt","lint":"eslint ./","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter","observables-tests":"node tests/observables/adapter && node tests/observables/adapter-library","test":"npm run grunt clean copy && npm run lint && npm run grunt livescript client karma:default && npm run grunt library karma:library && npm run promises-tests && npm run observables-tests && lsc tests/commonjs"},"license":"MIT","keywords":["ES3","ECMAScript 3","ES5","ECMAScript 5","ES6","ES2015","ECMAScript 6","ECMAScript 2015","ES7","ES2016","ECMAScript 7","ECMAScript 2016","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","TypedArray","setImmediate","Dict","polyfill","shim"],"gitHead":"63ae52d7625b5ba9bf5cb27558e7d0ae705e39e0","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"homepage":"https://github.com/zloirock/core-js#readme","_id":"core-js@2.5.0","_shasum":"569c050918be6486b3837552028ae0466b717086","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.6.0","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"dist":{"shasum":"569c050918be6486b3837552028ae0466b717086","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/core-js/-/core-js-2.5.0.tgz"},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/core-js-2.5.0.tgz_1502029820484_0.05132471746765077"},"directories":{}}},"name":"core-js","time":{"modified":"2017-08-06T14:30:22.262Z","created":"2013-07-18T10:49:42.468Z","0.0.1":"2013-07-18T10:53:27.528Z","0.0.3":"2013-12-24T09:45:00.433Z","0.0.4":"2014-01-05T02:05:43.411Z","0.0.5":"2014-01-09T09:05:31.109Z","0.0.7":"2014-05-07T17:27:23.094Z","0.0.8":"2014-09-12T15:38:01.563Z","0.0.9":"2014-10-30T15:09:49.499Z","0.1.0":"2014-11-17T00:42:23.913Z","0.1.1":"2014-11-18T11:52:05.640Z","0.1.2":"2014-11-19T13:43:20.217Z","0.1.3":"2014-11-20T09:19:37.161Z","0.1.4":"2014-11-27T11:13:29.979Z","0.1.5":"2014-12-01T13:32:35.129Z","0.2.0":"2014-12-06T18:56:39.275Z","0.2.1":"2014-12-11T21:02:09.371Z","0.2.2":"2014-12-12T21:17:09.688Z","0.2.3":"2014-12-15T15:24:24.134Z","0.2.4":"2014-12-17T00:54:28.438Z","0.2.5":"2014-12-20T03:31:13.556Z","0.3.0":"2014-12-22T22:21:16.066Z","0.3.1":"2014-12-23T12:52:54.979Z","0.3.2":"2014-12-25T04:14:39.455Z","0.3.3":"2014-12-28T01:30:26.623Z","0.4.0":"2015-01-04T15:22:16.756Z","0.4.1":"2015-01-05T22:44:59.166Z","0.4.2":"2015-01-10T05:47:52.194Z","0.4.3":"2015-01-10T11:46:00.422Z","0.4.4":"2015-01-11T15:14:14.017Z","0.4.5":"2015-01-16T14:23:25.332Z","0.4.6":"2015-01-21T17:23:06.611Z","0.4.7":"2015-01-24T19:17:22.927Z","0.4.8":"2015-01-25T10:05:06.642Z","0.4.9":"2015-01-26T18:28:39.598Z","0.4.10":"2015-01-28T09:18:31.947Z","0.5.0":"2015-02-07T22:32:45.851Z","0.5.1":"2015-02-08T22:38:40.531Z","0.5.2":"2015-02-10T10:30:46.396Z","0.5.3":"2015-02-14T05:37:26.115Z","0.5.4":"2015-02-15T01:13:03.863Z","0.6.0":"2015-02-23T04:33:21.639Z","0.6.1":"2015-02-24T09:26:14.614Z","0.7.0":"2015-03-05T19:25:27.737Z","0.7.1":"2015-03-07T00:49:14.883Z","0.7.2":"2015-03-08T22:30:26.116Z","0.8.0":"2015-04-02T15:17:53.957Z","0.8.1":"2015-04-03T08:01:42.782Z","0.8.2":"2015-04-13T01:10:49.778Z","0.8.3":"2015-04-13T18:56:41.064Z","0.8.4":"2015-04-17T18:05:07.137Z","0.9.0":"2015-04-24T05:53:40.625Z","0.9.1":"2015-04-25T04:27:16.301Z","0.9.2":"2015-04-25T06:49:59.947Z","0.9.3":"2015-04-25T23:11:28.280Z","0.9.4":"2015-04-26T21:48:00.055Z","0.9.5":"2015-04-29T21:38:52.134Z","0.9.6":"2015-05-01T12:31:56.823Z","0.9.7":"2015-05-07T12:24:09.237Z","0.9.8":"2015-05-11T18:04:56.062Z","0.9.9":"2015-05-14T17:27:25.742Z","0.9.10":"2015-05-15T18:32:46.639Z","0.9.11":"2015-05-18T15:34:24.409Z","0.9.12":"2015-05-23T22:57:31.314Z","0.9.13":"2015-05-25T10:19:28.450Z","0.9.14":"2015-06-03T20:47:16.788Z","0.9.15":"2015-06-09T03:02:09.944Z","0.9.16":"2015-06-11T11:32:25.954Z","0.9.17":"2015-06-13T18:35:16.227Z","0.9.18":"2015-06-17T16:46:17.311Z","1.0.0":"2015-07-21T18:44:25.972Z","1.0.1":"2015-07-31T01:22:56.917Z","1.1.0":"2015-08-17T17:04:20.927Z","1.1.1":"2015-08-20T08:01:11.489Z","1.1.2":"2015-08-28T12:36:50.180Z","1.1.3":"2015-08-29T12:12:17.671Z","1.1.4":"2015-09-05T02:36:50.933Z","1.2.0":"2015-09-26T19:35:37.103Z","1.2.1":"2015-10-01T19:57:31.444Z","1.2.2":"2015-10-18T19:25:05.439Z","1.2.3":"2015-10-22T19:42:26.499Z","1.2.4":"2015-10-31T23:09:19.630Z","1.2.5":"2015-11-02T11:12:17.868Z","1.2.6":"2015-11-09T04:47:47.062Z","2.0.0-alpha":"2015-11-25T18:16:38.626Z","2.0.0-beta":"2015-12-07T18:04:19.426Z","2.0.0-beta.2":"2015-12-18T08:14:56.981Z","2.0.0":"2015-12-24T08:31:46.168Z","2.0.1":"2015-12-31T10:22:14.674Z","2.0.2":"2016-01-03T23:09:29.994Z","2.0.3":"2016-01-11T08:13:24.517Z","2.1.0":"2016-02-08T23:32:29.307Z","2.1.1":"2016-02-22T04:09:25.032Z","2.1.2":"2016-02-29T04:45:29.922Z","2.1.3":"2016-02-29T17:26:06.070Z","2.1.4":"2016-03-08T17:37:04.261Z","2.1.5":"2016-03-12T10:57:48.581Z","2.2.0":"2016-03-15T16:07:12.392Z","2.2.1":"2016-03-18T18:37:32.093Z","2.2.2":"2016-04-06T12:19:54.178Z","2.3.0":"2016-04-23T21:35:08.705Z","2.4.0":"2016-05-08T01:36:21.015Z","1.2.7":"2016-07-17T21:22:00.033Z","2.4.1":"2016-07-17T21:43:28.694Z","2.5.0":"2017-08-06T14:30:22.262Z"},"readmeFilename":"README.md","homepage":"https://github.com/zloirock/core-js#readme"}