UNPKG

data-synchronizer

Version:

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

10 lines (7 loc) 162 B
const $type = 'boolean'; const to = (value: boolean) => [ $type, value ] const from = (value: boolean) => value; export default [$type, from, to];