MCPcopy Index your code
hub / github.com/angular/angular / splitAtColon

Function splitAtColon

packages/compiler/src/util.ts:15–17  ·  view source on GitHub ↗
(input: string, defaultValues: (string | null)[])

Source from the content-addressed store, hash-verified

13}
14
15export function splitAtColon(input: string, defaultValues: (string | null)[]): (string | null)[] {
16 return _splitAt(input, ':', defaultValues);
17}
18
19export function splitAtPeriod(input: string, defaultValues: (string | null)[]): (string | null)[] {
20 return _splitAt(input, '.', defaultValues);

Callers 2

util_spec.tsFile · 0.90

Calls 1

_splitAtFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…