1
0
Fork 0
mirror of https://github.com/shimataro/ssh-key-action.git synced 2025-06-19 22:52:10 +10:00
ssh-key-action/node_modules/unique-string
2019-09-18 20:39:54 +09:00
..
index.js * first action! (#1) 2019-09-18 20:39:54 +09:00
license * first action! (#1) 2019-09-18 20:39:54 +09:00
package.json * first action! (#1) 2019-09-18 20:39:54 +09:00
readme.md * first action! (#1) 2019-09-18 20:39:54 +09:00

unique-string Build Status

Generate a unique random string

Install

$ npm install --save unique-string

Usage

const uniqueString = require('unique-string');

uniqueString();
//=> 'b4de2a49c8ffa3fbee04446f045483b2'

API

uniqueString()

Returns a 32 character unique string. Matches the length of MD5, which is unique enough for non-crypto purposes.

License

MIT © Sindre Sorhus