bcrypt-as-promised
Advanced tools
Comparing version 1.0.0 to 1.0.1
{ | ||
"name": "bcrypt-as-promised", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"description": "A promisified bcrypt", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -17,3 +17,3 @@ bcrypt-as-promised | ||
```javascript | ||
bcyrpt.hash('my password', 10) | ||
bcrypt.hash('my password', 10) | ||
.then(console.log, console.error) | ||
@@ -25,3 +25,3 @@ ``` | ||
```javascript | ||
bcyrpt.compare('my password', someHash) | ||
bcrypt.compare('my password', someHash) | ||
.then(console.log, console.error) | ||
@@ -32,3 +32,3 @@ ``` | ||
```javascript | ||
bcyrpt.genSalt(10) | ||
bcrypt.genSalt(10) | ||
.then(console.log, console.error) | ||
@@ -39,4 +39,4 @@ ``` | ||
```javascript | ||
bcyrpt.getRounds(someHash) | ||
bcrypt.getRounds(someHash) | ||
.then(console.log, console.error) | ||
``` |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package