Skip to content

Commit

Permalink
Merge pull request #6 from marmelab/use_findIndex_polyfill
Browse files Browse the repository at this point in the history
[RFR] Use findIndex polyfill & remove babel polyfills
  • Loading branch information
jeromemacias committed May 19, 2015
2 parents d537f24 + 603bd9e commit 286966c
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 3 deletions.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
"author": "François Zaninotto <[email protected]>",
"license": "MIT",
"devDependencies": {
"array.prototype.findindex": "^1.0.0",
"babel-core": "^5.4.3",
"babel-loader": "^5.1.2",
"babel-runtime": "^5.4.3",
Expand Down
2 changes: 1 addition & 1 deletion src/Collection.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import 'babel-core/polyfill';
import 'array.prototype.findindex';

function filterItems(items, filter) {
if (typeof filter === 'function') {
Expand Down
1 change: 0 additions & 1 deletion src/FakeRest.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import 'babel-core/polyfill';
import Server from 'Server';
import Collection from 'Collection';

Expand Down
1 change: 0 additions & 1 deletion src/Server.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import 'babel-core/polyfill';
import Collection from 'Collection';

function parseQueryString(queryString) {
Expand Down

0 comments on commit 286966c

Please sign in to comment.