- 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>
30 lines
547 B
TypeScript
30 lines
547 B
TypeScript
/**
|
|
Split a string on the first occurrence of a given separator.
|
|
|
|
@param string - The string to split.
|
|
@param separator - The separator to split on.
|
|
|
|
@example
|
|
```
|
|
import splitOnFirst = require('split-on-first');
|
|
|
|
splitOnFirst('a-b-c', '-');
|
|
//=> ['a', 'b-c']
|
|
|
|
splitOnFirst('key:value:value2', ':');
|
|
//=> ['key', 'value:value2']
|
|
|
|
splitOnFirst('a---b---c', '---');
|
|
//=> ['a', 'b---c']
|
|
|
|
splitOnFirst('a-b-c', '+');
|
|
//=> ['a-b-c']
|
|
```
|
|
*/
|
|
declare function splitOnFirst(
|
|
string: string,
|
|
separator: string
|
|
): [string, string?];
|
|
|
|
export = splitOnFirst;
|