core-js 0.8.3 → 0.8.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,9 +1,10 @@
1
1
  // ie9- setTimeout & setInterval additional parameters fix
2
- var $ = require('./$')
3
- , $def = require('./$.def')
4
- , invoke = require('./$.invoke')
5
- , partial = require('./$.partial')
6
- , MSIE = !!$.g.navigator && /MSIE .\./.test(navigator.userAgent); // <- dirty ie9- check
2
+ var $ = require('./$')
3
+ , $def = require('./$.def')
4
+ , invoke = require('./$.invoke')
5
+ , partial = require('./$.partial')
6
+ , navigator = $.g.navigator
7
+ , MSIE = !!navigator && /MSIE .\./.test(navigator.userAgent); // <- dirty ie9- check
7
8
  function wrap(set){
8
9
  return MSIE ? function(fn, time /*, ...args */){
9
10
  return set(invoke(
package/package.json CHANGED
@@ -1,18 +1,18 @@
1
1
  {
2
2
  "name": "core-js",
3
3
  "description": "Standard library",
4
- "version": "0.8.3",
4
+ "version": "0.8.4",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/zloirock/core-js.git"
8
8
  },
9
9
  "main": "index.js",
10
10
  "devDependencies": {
11
- "browserify": "9.0.x",
11
+ "webpack": "1.8.x",
12
12
  "LiveScript": "1.3.x",
13
13
  "grunt": "0.4.x",
14
14
  "grunt-livescript": "0.5.x",
15
- "grunt-contrib-uglify": "0.8.x",
15
+ "grunt-contrib-uglify": "0.9.x",
16
16
  "grunt-contrib-watch": "0.6.x",
17
17
  "grunt-contrib-clean": "0.6.x",
18
18
  "grunt-contrib-copy": "0.8.x",
@@ -23,7 +23,7 @@
23
23
  "karma-firefox-launcher": "0.1.x",
24
24
  "karma-opera-launcher": "0.1.x",
25
25
  "promises-aplus-tests": "2.1.x",
26
- "eslint": "0.18.x"
26
+ "eslint": "0.19.x"
27
27
  },
28
28
  "scripts": {
29
29
  "lint": "eslint es5 es6 es7 js web core fn modules",