MCPcopy Create free account
hub / github.com/CreminiAI/skillpack / entriesEqual

Function entriesEqual

src/runtime/registry.ts:199–210  ·  view source on GitHub ↗
(a: RegistryEntry, b: RegistryEntry)

Source from the content-addressed store, hash-verified

197}
198
199function entriesEqual(a: RegistryEntry, b: RegistryEntry): boolean {
200 return (
201 a.dir === b.dir &&
202 a.name === b.name &&
203 a.version === b.version &&
204 a.port === b.port &&
205 a.pid === b.pid &&
206 a.status === b.status &&
207 a.startedAt === b.startedAt &&
208 a.stoppedAt === b.stoppedAt
209 );
210}
211
212// ---------------------------------------------------------------------------
213// Read / Write helpers

Callers 1

validateEntriesFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected