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

Function ownKeys

tslib.es6.js:266–273  ·  view source on GitHub ↗
(o)

Source from the content-addressed store, hash-verified

264};
265
266var ownKeys = function(o) {
267 ownKeys = Object.getOwnPropertyNames || function (o) {
268 var ar = [];
269 for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
270 return ar;
271 };
272 return ownKeys(o);
273};
274
275export function __importStar(mod) {
276 if (mod && mod.__esModule) return mod;

Callers 1

__importStarFunction · 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…