Home Manual Reference Source

src/arithmetic/sub32.js

const sub32 = (a, b) => (a - b) | 0;
export default sub32;