UNPKG

233 BJavaScriptView Raw
1'use strict';
2
3module.exports = filter;
4function filter(name, str, options) {
5 if (typeof filter[name] === 'function') {
6 return filter[name](str, options);
7 } else {
8 throw new Error('unknown filter ":' + name + '"');
9 }
10}