MCPcopy Create free account
hub / github.com/freecodexyz/free-code / slowLoggingAnt

Function slowLoggingAnt

src/utils/slowOperations.ts:130–136  ·  view source on GitHub ↗
(
  _strings: TemplateStringsArray,
  ..._values: unknown[]
)

Source from the content-addressed store, hash-verified

128
129// Must be regular functions (not arrows) to access `arguments`
130function slowLoggingAnt(
131 _strings: TemplateStringsArray,
132 ..._values: unknown[]
133): AntSlowLogger {
134 // eslint-disable-next-line prefer-rest-params
135 return new AntSlowLogger(arguments)
136}
137
138function slowLoggingExternal(): Disposable {
139 return NOOP_LOGGER

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected