(destination: Destination, error: mixed)
| 69 | } |
| 70 | |
| 71 | export function closeWithError(destination: Destination, error: mixed): void { |
| 72 | destination.done = true; |
| 73 | destination.fatal = true; |
| 74 | destination.error = error; |
| 75 | } |
| 76 | |
| 77 | export {createFastHashJS as createFastHash} from './createFastHashJS'; |
| 78 |
no outgoing calls
no test coverage detected