Files
divkit/json-builder/typescript/simple-snapshot-serializer.js
2022-10-14 13:38:12 +03:00

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;
}
}