- 37개 파일 IP → zioinfo.co.kr 치환 (소스/매뉴얼/설정/하네스) - Manager DrConsole/NetworkConsole/CsapConsole 빌드 + /var/www/manager/ 배포 - 테스트: Manager HTTP 200, ITSM 신규 API 7개 전체 200 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
33 lines
614 B
Markdown
33 lines
614 B
Markdown
# unique-string [](https://travis-ci.org/sindresorhus/unique-string)
|
|
|
|
> Generate a unique random string
|
|
|
|
|
|
## Install
|
|
|
|
```
|
|
$ npm install 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](https://stackoverflow.com/a/2444336/64949) for non-crypto purposes.
|
|
|
|
|
|
## License
|
|
|
|
MIT © [Sindre Sorhus](https://sindresorhus.com)
|