Submit
Path:
~
/
/
proc
/
self
/
root
/
usr
/
lib
/
node_modules
/
npm
/
node_modules
/
split-on-first
/
File Content:
index.d.ts
/** 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;
Submit
FILE
FOLDER
Name
Size
Permission
Action
index.d.ts
547 bytes
0644
index.js
459 bytes
0644
license
1109 bytes
0644
package.json
1741 bytes
0644
readme.md
1086 bytes
0644
N4ST4R_ID | Naxtarrr