-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
37 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,8 @@ | ||
var lowercase = require('./lowercase'); | ||
var uppercase = require('./uppercase'); | ||
var numbers = require('./numbers'); | ||
var nolookalikes = require('./nolookalikes'); | ||
var nolookalikesSafe = require('./nolookalikes-safe'); | ||
var alphanumeric = require('./alphanumeric'); | ||
|
||
module.exports = { | ||
lowercase: lowercase, | ||
uppercase: uppercase, | ||
numbers: numbers, | ||
nolookalikes: nolookalikes, | ||
nolookalikesSafe: nolookalikesSafe, | ||
alphanumeric: alphanumeric, | ||
lowercase: require('./lowercase'), | ||
uppercase: require('./uppercase'), | ||
numbers: require('./numbers'), | ||
nolookalikes: require('./nolookalikes'), | ||
nolookalikesSafe: require('./nolookalikes-safe'), | ||
alphanumeric: require('./alphanumeric'), | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
export const lowercase: string; | ||
export const uppercase: string; | ||
export const numbers: string; | ||
export const nolookalikes: string; | ||
export const nolookalikesSafe: string; | ||
export const alphanumeric: string; |