git ssb

2+

Dominic / pull-stream



Tree: 7aa21412f6c0bd6b84022d67ff8e51711eddb510

Files: 7aa21412f6c0bd6b84022d67ff8e51711eddb510 / util / prop.js

283 bytesRaw
1module.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