mirror of
https://github.com/divkit/divkit.git
synced 2026-05-07 20:02:32 +00:00
11 lines
273 B
JavaScript
11 lines
273 B
JavaScript
// The standard snapshot serializer is too accurate for us
|
|
// It stores all the "undefined" values, of which there are many in our data
|
|
module.exports = {
|
|
serialize(val) {
|
|
return JSON.stringify(val, null, 2);
|
|
},
|
|
test(val) {
|
|
return true;
|
|
}
|
|
}
|