Files: cc048d2d98e1cd95038b14d5816dd19931a7b0fa / util / prop.js
283 bytesRaw
1 | module.exports = function prop (key) { |
2 | return key && ( |
3 | 'string' == typeof key |
4 | ? function (data) { return data[key] } |
5 | : 'object' === typeof key && 'function' === typeof key.exec //regexp |
6 | ? function (data) { var v = key.exec(data); return v && v[0] } |
7 | : key |
8 | ) |
9 | } |
10 |
Built with git-ssb-web