* Fix workflow * Trigger * [auto] Update compiled version * [auto] Commit modules * Push Windows changes * Fix * [auto] Update compiled version * Try removing cwd * [auto] Update compiled version * Try with path module * [auto] Update compiled version * Fix path * [auto] Update compiled version * Use raw path * [auto] Update compiled version * Other path * [auto] Update compiled version * Avoid @action/exec * [auto] Update compiled version * test * [auto] Update compiled version * test * [auto] Update compiled version * test * [auto] Update compiled version * test * [auto] Update compiled version * Try with shelljs * [auto] Update compiled version * Fix my stupidity * Copy scripts to local dir * [auto] Update compiled version * Still use path * [auto] Update compiled version * Delete entrypoint.sh * [auto] Update compiled version * Make file executable * [auto] Update compiled version * Try using bash * [auto] Update compiled version
33 lines
620 B
Markdown
33 lines
620 B
Markdown
# unique-string [](https://travis-ci.org/sindresorhus/unique-string)
|
|
|
|
> Generate a unique random string
|
|
|
|
|
|
## Install
|
|
|
|
```
|
|
$ npm install --save unique-string
|
|
```
|
|
|
|
|
|
## Usage
|
|
|
|
```js
|
|
const uniqueString = require('unique-string');
|
|
|
|
uniqueString();
|
|
//=> 'b4de2a49c8ffa3fbee04446f045483b2'
|
|
```
|
|
|
|
|
|
## API
|
|
|
|
### uniqueString()
|
|
|
|
Returns a 32 character unique string. Matches the length of MD5, which is [unique enough](http://stackoverflow.com/a/2444336/64949) for non-crypto purposes.
|
|
|
|
|
|
## License
|
|
|
|
MIT © [Sindre Sorhus](https://sindresorhus.com)
|