* Gets the owned, enumerable property keys of a map-like.
(map)
| 1447 | * Gets the owned, enumerable property keys of a map-like. |
| 1448 | */ |
| 1449 | function getOwnKeys(map) { |
| 1450 | var keys = []; |
| 1451 | for (var key in map) { |
| 1452 | if (hasOwnProperty.call(map, key)) { |
| 1453 | keys.push(key); |
| 1454 | } |
| 1455 | } |
| 1456 | return keys; |
| 1457 | } |
| 1458 | ts.getOwnKeys = getOwnKeys; |
| 1459 | function getAllKeys(obj) { |
| 1460 | var result = []; |
no test coverage detected
searching dependent graphs…