(obj: Object)
| 43 | * Gets the keys of an object, including `symbol` keys. |
| 44 | */ |
| 45 | export 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. |
no test coverage detected
searching dependent graphs…