Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
const convert = (schema, options) => {
const opts = options || {}
return app.load_list('filter_converter').reduce((prve, converter) => {
return converter(prve, schema, opts)
}, {})
}