blob: 3ebbc0d0ce08a29e938356c91feb4d60b071e857 (
plain)
1
2
3
4
5
6
7
|
import { makeDeriver } from '$lib/swatch/derive.js';
export const decode = makeDeriver(JSON.parse);
export function encode(value) {
return JSON.stringify(value, /* replacer */ null, /* space */ 2);
}
|