- 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>
40 lines
657 B
Markdown
40 lines
657 B
Markdown
# strict-uri-encode [](https://travis-ci.org/kevva/strict-uri-encode)
|
|
|
|
> A stricter URI encode adhering to [RFC 3986](http://tools.ietf.org/html/rfc3986)
|
|
|
|
|
|
## Install
|
|
|
|
```
|
|
$ npm install --save strict-uri-encode
|
|
```
|
|
|
|
|
|
## Usage
|
|
|
|
```js
|
|
const strictUriEncode = require('strict-uri-encode');
|
|
|
|
strictUriEncode('unicorn!foobar');
|
|
//=> 'unicorn%21foobar'
|
|
|
|
strictUriEncode('unicorn*foobar');
|
|
//=> 'unicorn%2Afoobar'
|
|
```
|
|
|
|
|
|
## API
|
|
|
|
### strictUriEncode(string)
|
|
|
|
#### string
|
|
|
|
Type: `string`, `number`
|
|
|
|
String to URI encode.
|
|
|
|
|
|
## License
|
|
|
|
MIT © [Kevin Mårtensson](http://github.com/kevva)
|