fx/pkg/reducer/js.js
2022-05-08 15:13:09 +02:00

13 lines
185 B
JavaScript

// .fxrc.js %v
function reduce(input) {
let x = JSON.parse(input)
// Reducers %v
if (typeof x === 'undefined') {
return 'null'
} else {
return JSON.stringify(x)
}
}