X7ROOT File Manager
Current Path:
/usr/lib/node_modules/npm/node_modules/split-on-first
usr
/
lib
/
node_modules
/
npm
/
node_modules
/
split-on-first
/
ðŸ“
..
📄
index.d.ts
(547 B)
📄
index.js
(459 B)
📄
license
(1.08 KB)
📄
package.json
(1.7 KB)
📄
readme.md
(1.06 KB)
Editing: 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;
Upload File
Create Folder