Skip to content

Commit

Permalink
[Dev Deps] update browserify, is, tape, nsp, eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb committed Nov 27, 2016
1 parent b797760 commit b223e86
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,13 @@
"define-properties": "^1.1.2"
},
"devDependencies": {
"browserify": "^13.1.0",
"is": "^3.1.0",
"tape": "^4.6.0",
"browserify": "^13.1.1",
"is": "^3.2.0",
"tape": "^4.6.3",
"covert": "^1.1.0",
"jscs": "^3.0.7",
"nsp": "^2.6.1",
"eslint": "^3.6.1",
"nsp": "^2.6.2",
"eslint": "^3.11.0",
"@ljharb/eslint-config": "^8.0.0",
"@es-shims/api": "^1.2.0",
"for-each": "^0.3.2"
Expand Down
2 changes: 1 addition & 1 deletion shim.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ module.exports = function shimGlobal() {
var polyfill = getPolyfill();
if (define.supportsDescriptors) {
var descriptor = Object.getOwnPropertyDescriptor(polyfill, 'global');
if (!descriptor || (descriptor.configurable && (descriptor.enumerable || descriptor.writable || global !== polyfill))) {
if (!descriptor || (descriptor.configurable && (descriptor.enumerable || descriptor.writable || global !== polyfill))) { // eslint-disable-line max-len
Object.defineProperty(polyfill, 'global', {
configurable: true,
enumerable: false,
Expand Down

0 comments on commit b223e86

Please sign in to comment.