@jswork/next-filter
v1.0.0
Published
Filter for next.
Downloads
3
Readme
next-filter
Filter for next.
installation
npm install -S @jswork/next-filterusage
import '@jswork/next-filter';
// single filter
const res1 = nx.filter('aaa', [addMore(111, 999)]);
//res1: '111aaa999'
// multiple filter
const res2 = nx.filter('aaa', [
addMore(111, 999),
addZero()
]);
//res2: 0111aaa9990license
Code released under the MIT license.
