(value)
| 56 | var store = module.exports[store_fn]; |
| 57 | function peek() { return load(offset); } |
| 58 | function poke(value) { return store(offset, value); } |
| 59 | |
| 60 | // Instead of checking every n-th offset, check the first 5. |
| 61 | for(offset = 0; offset <= (4*size); offset+=size) { |
no test coverage detected