0.1.1 • Published 9 years ago
babel-plugin-js-pattern-matching v0.1.1
Babel Plugin for JS-Pattern-Matching
This is a Babel Plugin intended to make JS-Pattern-Matching compatible with Babel (and, therefore, with non-ES2015 environments)
import match from 'js-pattern-matching';
const sum = (list) => match (list) (
([x,...xs]) => x + sum(xs),
([]) => 0
)
console.log(sum([]));
// prints 0
console.log(sum([1,2,3]));
// prints 6Installation
npm install --save-dev babel-plugin-js-pattern-matchingTo use the plugin, first install it with the above command.
Usage
To use JS-Pattern-Matching together with Babel, just add the plugin to your .babelrc file:
{
"presets": [
"es2015"
],
"plugins": [
"babel-plugin-js-pattern-matching",
]
}Important note about usage
The plugin currently relies on the match function being imported and used with that name. If you import it using another name, it will probably not work. Support for custom names is planned for the next release.