Skip to content
This repository has been archived by the owner on Apr 3, 2019. It is now read-only.

Commit

Permalink
more lodash aliases
Browse files Browse the repository at this point in the history
  • Loading branch information
matiu committed Oct 25, 2017
1 parent 88e76bd commit 85be361
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -2,7 +2,7 @@ language: node_js
sudo: false
node_js:
- '6'
- '7'
- '8'
before_install:
- npm install -g bower
- export DISPLAY=:99.0
Expand Down
2 changes: 1 addition & 1 deletion lib/hdprivatekey.js
Expand Up @@ -74,7 +74,7 @@ function HDPrivateKey(arg) {
HDPrivateKey.isValidPath = function(arg, hardened) {
if (_.isString(arg)) {
var indexes = HDPrivateKey._getDerivationIndexes(arg);
return indexes !== null && _.all(indexes, HDPrivateKey.isValidPath);
return indexes !== null && _.every(indexes, HDPrivateKey.isValidPath);
}

if (_.isNumber(arg)) {
Expand Down

0 comments on commit 85be361

Please sign in to comment.