({ n, sync, size, salt, info, hash, key })
| 37 | } |
| 38 | |
| 39 | function main({ n, sync, size, salt, info, hash, key }) { |
| 40 | if (sync) |
| 41 | measureSync(n, size, salt, info, hash, key); |
| 42 | else |
| 43 | measureAsync(n, size, salt, info, hash, key); |
| 44 | } |
nothing calls this directly
no test coverage detected