Urara-Blog/node_modules/.pnpm-store/v3/files/6d/2d682e07b38c257d4683392e69476640c31c869458d23a287798dab125fab88ed610fea4e9e542d0829e8e32b0bf99858058ea60fcdf7475958bf07707dbb8
2022-08-14 01:14:53 +08:00

16 lines
388 B
Text

/**
Generate a unique random string.
@returns A 32 character unique string. Matches the length of MD5, which is [unique enough](https://stackoverflow.com/a/2444336/64949) for non-crypto purposes.
@example
```
import uniqueString = require('unique-string');
uniqueString();
//=> 'b4de2a49c8ffa3fbee04446f045483b2'
```
*/
declare function uniqueString(): string;
export = uniqueString;