UNPKG

265 BJavaScriptView Raw
1var prop = require('./prop')
2
3function id (e) { return e }
4
5module.exports = function tester (test) {
6 return (
7 'object' === typeof test && 'function' === typeof test.test //regexp
8 ? function (data) { return test.test(data) }
9 : prop (test) || id
10 )
11}