PHP 8.1.33
Preview: index.d.ts Size: 547 B
//lib/node_modules/npm/node_modules/split-on-first/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;

Directory Contents

Dirs: 0 × Files: 5

Name Size Perms Modified Actions
547 B lrw-r--r-- 2021-03-10 14:36:38
Edit Download
459 B lrw-r--r-- 2021-03-10 14:36:38
Edit Download
1.08 KB lrw-r--r-- 2021-03-10 14:36:38
Edit Download
1.70 KB lrw-r--r-- 2021-03-10 14:36:38
Edit Download
1.06 KB lrw-r--r-- 2021-03-10 14:36:38
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).