Also look for the CodeQL bundle at the custom GitHub AE endpoint.

This commit is contained in:
Chris Gavin 2021-02-11 15:13:22 +00:00
parent 781e3bc540
commit f8c5dacab5
No known key found for this signature in database
GPG key ID: 07F950B80C27E4DA
27 changed files with 2159 additions and 3 deletions

29
node_modules/split-on-first/index.d.ts generated vendored Normal file
View file

@ -0,0 +1,29 @@
/**
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;