kubo-rpc-client
Version:
A client library for the Kubo RPC API
24 lines (20 loc) • 628 B
text/typescript
import { toUrlSearchParams } from '../lib/to-url-search-params.js'
import type { ConfigAPI } from './index.js'
import type { HTTPRPCClient } from '../lib/core.js'
export function createGet (client: HTTPRPCClient): ConfigAPI['get'] {
return async function get (key, options = {}) {
if (key == null) {
throw new Error('key argument is required')
}
const res = await client.post('config', {
signal: options.signal,
searchParams: toUrlSearchParams({
arg: key,
...options
}),
headers: options.headers
})
const data = await res.json()
return data.Value
}
}