UNPKG

sugar

Version:

A Javascript utility library for working with native objects.

10 lines (8 loc) 152 B
'use strict'; function regexMatcher(reg) { reg = RegExp(reg); return function(el) { return reg.test(el); }; } module.exports = regexMatcher;