MCPcopy Index your code
hub / github.com/nodejs/node / allKeysStartWithDot

Function allKeysStartWithDot

test/fixtures/snapshot/typescript.js:43919–43921  ·  view source on GitHub ↗
(obj)

Source from the content-addressed store, hash-verified

43917 ts.parsePackageName = parsePackageName;
43918 /* @internal */
43919 function allKeysStartWithDot(obj) {
43920 return ts.every(ts.getOwnKeys(obj), function (k) { return ts.startsWith(k, "."); });
43921 }
43922 ts.allKeysStartWithDot = allKeysStartWithDot;
43923 function noKeyStartsWithDot(obj) {
43924 return !ts.some(ts.getOwnKeys(obj), function (k) { return ts.startsWith(k, "."); });

Callers 2

loadModuleFromExportsFunction · 0.85

Calls 1

everyMethod · 0.80

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…