MCPcopy Create free account
hub / github.com/microsoft/tslib / ownKeys

Function ownKeys

tslib.js:315–322  ·  view source on GitHub ↗
(o)

Source from the content-addressed store, hash-verified

313 };
314
315 var ownKeys = function(o) {
316 ownKeys = Object.getOwnPropertyNames || function (o) {
317 var ar = [];
318 for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
319 return ar;
320 };
321 return ownKeys(o);
322 };
323
324 __importStar = function (mod) {
325 if (mod && mod.__esModule) return mod;

Callers 1

tslib.jsFile · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…