git ssb

1+

Matt McKegg / mutant



Tree: dacc7137a972984d5f5adfe48e91c35b8056adb9

Files: dacc7137a972984d5f5adfe48e91c35b8056adb9 / lib / add-lookup-methods.js

256 bytesRaw
1module.exports = function (target, lookup, checkUpdated) {
2 target.keys = function () {
3 checkUpdated && checkUpdated()
4 return Object.keys(lookup)
5 }
6
7 target.get = function (key) {
8 checkUpdated && checkUpdated()
9 return lookup[key]
10 }
11}
12

Built with git-ssb-web