2022-03-18 21:50:24 +00:00
|
|
|
import * as plugins from './smartstring.plugins.js';
|
2017-10-11 12:52:22 +00:00
|
|
|
|
2019-01-12 19:12:58 +00:00
|
|
|
/**
|
|
|
|
* creates a random string
|
2019-04-16 06:55:37 +00:00
|
|
|
*
|
2019-01-12 19:12:58 +00:00
|
|
|
* ```ts
|
|
|
|
* createRandomString('AAAA')
|
2019-04-16 06:55:37 +00:00
|
|
|
* //=> 'AGHR'
|
2019-01-12 19:12:58 +00:00
|
|
|
* ```
|
2019-04-16 06:55:37 +00:00
|
|
|
*
|
2019-01-12 19:12:58 +00:00
|
|
|
* @param patternArg the pattern argument to use, Aa0!* are viable pattern descritors
|
|
|
|
* @param lengthArg the length of the random string
|
|
|
|
* @param optionsArg options
|
|
|
|
*/
|
2017-10-26 13:24:10 +00:00
|
|
|
export const createRandomString = (
|
2017-10-11 12:52:22 +00:00
|
|
|
patternArg: string,
|
2019-01-12 19:12:58 +00:00
|
|
|
lengthArg?: number,
|
|
|
|
optionsArg?: any
|
2017-10-11 12:52:22 +00:00
|
|
|
): string => {
|
2018-07-21 12:37:39 +00:00
|
|
|
return plugins.randomatic(patternArg, lengthArg, optionsArg);
|
|
|
|
};
|
2017-10-11 12:52:22 +00:00
|
|
|
|
2019-01-12 19:12:58 +00:00
|
|
|
/**
|
2020-12-31 04:42:46 +00:00
|
|
|
* creates a crytic string in the speicifed length
|
2019-01-12 19:12:58 +00:00
|
|
|
* @param lengthArg the length of the crypto string
|
|
|
|
*/
|
2022-03-18 21:50:24 +00:00
|
|
|
export const createCryptoRandomString = (): string => {
|
|
|
|
return plugins.isounique.uni();
|
2018-07-21 12:37:39 +00:00
|
|
|
};
|