MCPcopy Create free account
hub / github.com/SOS-RS/backend / removeNotNumbers

Function removeNotNumbers

src/utils/utils.ts:26–28  ·  view source on GitHub ↗
(input: string)

Source from the content-addressed store, hash-verified

24}
25
26function removeNotNumbers(input: string): string {
27 return input.replace(/[^0-9]/g, '');
28}
29
30function capitalize(input: string): string {
31 return input

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected