404

[ Avaa Bypassed ]




Upload:

Command:

botdev@18.117.146.157: ~ $
/**
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;

Filemanager

Name Type Size Permission Actions
index.d.ts File 547 B 0644
index.js File 459 B 0644
license File 1.08 KB 0644
package.json File 1.7 KB 0644
readme.md File 1.06 KB 0644