MCPcopy Create free account
hub / github.com/denodrivers/postgres / decodeInt

Function decodeInt

query/decoders.ts:218–220  ·  view source on GitHub ↗
(value: string)

Source from the content-addressed store, hash-verified

216}
217
218export function decodeInt(value: string): number {
219 return parseInt(value, 10);
220}
221
222export function decodeIntArray(value: string) {
223 return parseArray(value, decodeInt);

Callers 2

decodeTextFunction · 0.90
decode_test.tsFile · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected