Skip to content

Instantly share code, notes, and snippets.

@sergueyarellano
Created May 26, 2021 14:22
Show Gist options
  • Save sergueyarellano/697c082cde33f5caaa3454f65ca52247 to your computer and use it in GitHub Desktop.
Save sergueyarellano/697c082cde33f5caaa3454f65ca52247 to your computer and use it in GitHub Desktop.
function substituteOperators (restrictions) {
const operators = {
'less than': (a, b) => a < b
}
return restrictions.map(restriction => {
restriction.operator = operators[restriction.operator]
return restriction
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment