UNPKG

data-synchronizer

Version:

A versatile library for transferring data across multi-page applications or single page applications.

14 lines (11 loc) 214 B
const $type = 'bigint'; const to = (value: bigint) => { return [ $type, value.toString(), ] } const from = (value: string) => { return BigInt(value) } export default [$type, from, to];