UNPKG

ram64

Version:

Multi-threaded 64bit memory cache database inspired by redis-like features

7 lines (5 loc) 256 B
import { CommandFn, CommandOptions } from '../../commands'; import { fn as setWithOptions } from './setWithOptions'; export const fn: CommandFn = (opts: CommandOptions): void => { setWithOptions({ ...opts, args: { value: opts.args?.value }}); }