Skip to content

Commit

Permalink
Merge pull request #147 from svanlaere/master
Browse files Browse the repository at this point in the history
Update dependencies
  • Loading branch information
Bartosz Leoniak authored Aug 7, 2020
2 parents e00e166 + 7bae2a3 commit 5509e90
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 17 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
language: node_js
node_js:
- "8"
- "node"
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -155,4 +155,7 @@ $ npm install && npm test

### License
Copyright © 2018, [kmdrGroch](https://github.com/kmdrgroch).
Released under the [MIT License](LICENSE).
Released under the [MIT License](LICENSE).

### Note
The code will work for node >= 8, although there is a possibility that development tools won't work for some versions.
24 changes: 12 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,20 +11,20 @@
"test": "npm run build && nyc --include src/**/*.js --reporter=html --report-dir=coverage --check-coverage mocha \" src/**/*.spec.js\""
},
"devDependencies": {
"@types/benchmark": "^1.0.31",
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.6",
"@types/node": "^11.9.3",
"benchmark": "^2.1.4",
"chai": "^4.2.0",
"mocha": "^6.0.0",
"nyc": "^14.0.0",
"rimraf": "^2.6.3",
"tslint": "^5.12.1",
"typescript": "^3.3.3"
"@types/benchmark": "1.0.33",
"@types/chai": "4.2.12",
"@types/mocha": "8.0.1",
"@types/node": "14.0.27",
"benchmark": "2.1.4",
"chai": "4.2.0",
"mocha": "8.1.1",
"nyc": "15.1.0",
"rimraf": "3.0.2",
"tslint": "6.1.3",
"typescript": "3.9.7"
},
"dependencies": {
"param-type": "^1.1.0"
"param-type": "^1.1.1"
},
"author": "kmdrGroch",
"license": "MIT"
Expand Down
2 changes: 1 addition & 1 deletion src/paramsEqual.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/paramsEqual.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/paramsEqual.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const paramsEqual = (a: any, b: any): boolean => {
if (a.length !== b.length) {
return false;
}
for (const k in a) {
for (const k of Object.keys(a)) {
const propsA = Object.getOwnPropertyDescriptor(a, k) || {};
const propsB = Object.getOwnPropertyDescriptor(b, k) || {};

Expand Down

0 comments on commit 5509e90

Please sign in to comment.