UNPKG

@thi.ng/math

Version:

Assorted common math functions & utilities

5 lines (4 loc) 69 B
const safeDiv = (a, b) => b !== 0 ? a / b : 0; export { safeDiv };