MCPcopy
hub / github.com/di-sukharev/opencommit / omit

Function omit

out/cli.cjs:71017–71026  ·  view source on GitHub ↗
(obj, ...keys)

Source from the content-addressed store, hash-verified

71015 });
71016 return fakeSocket;
71017 }
71018};
71019HttpsProxyAgent.protocols = ["http", "https"];
71020function resume(socket) {
71021 socket.resume();
71022}
71023function omit(obj, ...keys) {
71024 const ret = {};
71025 let key;
71026 for (key in obj) {
71027 if (!keys.includes(key)) {
71028 ret[key] = obj[key];
71029 }

Callers 2

constructorMethod · 0.85
connectMethod · 0.85

Calls 1

includesMethod · 0.80

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…