(ref, hash, callback)
| 39 | } |
| 40 | |
| 41 | function updateRef(ref, hash, callback) { |
| 42 | return makeAsync(function () { |
| 43 | return (refs[ref] = hash); |
| 44 | }, callback); |
| 45 | } |
| 46 | |
| 47 | function hasHash(hash, callback) { |
| 48 | return makeAsync(function () { |
nothing calls this directly
no test coverage detected