UNPKG

data-synchronizer

Version:

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

14 lines (11 loc) 182 B
const $type = 'null'; const to = (value: null) => { return [ $type, '' + value ] } const from = () => { return null; } export default [$type, from, to];