1
0
mirror of https://github.com/S2-/securerandomstring.git synced 2025-08-02 18:30:04 +02:00

Fix error in options name

* Change Readme.md fixing alphabetic by alphanumeric name of options
* Add test to new option alphanumeric always expect alphanumeric chars if 'alphanumeric' options is true
This commit is contained in:
Sandro Ariel Gómez Araya
2017-11-24 12:07:54 -03:00
parent 31839fea0b
commit e91153d961
2 changed files with 10 additions and 5 deletions

View File

@@ -34,16 +34,16 @@ srs({length: 256}, function(err, sr) {
console.log(sr); console.log(sr);
}); });
``` ```
### Options: alphabetic ### Options: alphanumeric
Optionally, you can specify a 'alphabetic' option to get a alphabetical chars only. Optionally, you can specify a 'alphanumeric' option to get a alphanumerical chars only.
```javascript ```javascript
// sync // sync
var result = srs({alphabetic: true}); var result = srs({alphanumeric: true});
// async // async
srs({alphabetic: true}, function(err, sr) { srs({alphanumeric: true}, function(err, sr) {
console.log(sr); console.log(sr);
}); });
``` ```

View File

@@ -50,7 +50,12 @@ srs({length: 256}, function(err, sr) {
); );
}); });
srs({alphanumeric: true}, function(err, sr) {;
test('Must contain alphanumeric only',
sr.match(/^[a-zA-Z0-9_]*$/g)[0] === sr,
true
);
});
// sync tests // sync tests
test('generate a random string 32 chars long (sync)', srs().length, 32); test('generate a random string 32 chars long (sync)', srs().length, 32);
test('generate a random string 1 chars long (sync)', srs({length:1}).length, 1); test('generate a random string 1 chars long (sync)', srs({length:1}).length, 1);