Skip to content

Instantly share code, notes, and snippets.

@kojinkai
Last active September 22, 2017 16:12
Show Gist options
  • Save kojinkai/8c3584f7a37a885cd9bc8232f86a20eb to your computer and use it in GitHub Desktop.
Save kojinkai/8c3584f7a37a885cd9bc8232f86a20eb to your computer and use it in GitHub Desktop.
A higher order validation pipeline function for combining validation rules into a pipeline
const createValidationPipeLine = filters
=> (values, value, otherField)
=> filters.reduce((currentValue, filter)
=> filter(values, value, otherField), value);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment