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

Function getDataKeys

packages/router/src/utils/collection.ts:45–47  ·  view source on GitHub ↗
(obj: Object)

Source from the content-addressed store, hash-verified

43 * Gets the keys of an object, including `symbol` keys.
44 */
45export function getDataKeys(obj: Object): Array<string | symbol> {
46 return [...Object.keys(obj), ...Object.getOwnPropertySymbols(obj)];
47}
48
49/**
50 * Test equality for arrays of strings or a string.

Callers 2

resolveNodeFunction · 0.90
shallowEqualFunction · 0.85

Calls 1

keysMethod · 0.65

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…