arithmetic-type/int32

View on GitHub
src/arithmetic/div32.js

Summary

Maintainability
A
0 mins
Test Coverage
// NOTE This emulates hardware signed integer division. For the mathematical
// definition I guess we would need another function.
const div32 = (a, b) => (a / b) | 0;
export default div32;