Skip to content

Commit

Permalink
Use q-io@2 to exclude wrongly implemented "Array.prototype.find"-method
Browse files Browse the repository at this point in the history
This method is injected in the `collections`-package as array-shim, which is
a dependency of q-io. Version 1.x of `collections` implements the method with
the semantics of `Array.prototype.findIndex` instead. This leads to problems
with other packages that rely on the implementation as defined in the ES6-Standard

See also: montagejs/collections#139
  • Loading branch information
nknapp committed Jul 22, 2016
1 parent e203591 commit e987d49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"minimatch": "^3.0.0",
"q": "^1.4.1",
"q-deep": "^1.0.1",
"q-io": "^1.13.1"
"q-io": "2"
},
"standard": {
"ignore": [
Expand Down

0 comments on commit e987d49

Please sign in to comment.