frontend/.pnpm-store/v3/files/72/3e63cbd17f28dad6f74f131e8ca89ed8d82a38f1fe4e0cc6b474b59ab75dc68d404805b702daf5792fe2fa89e59fe8c3ef54e8ffc011534c382958f09587e6

11 lines
177 B
Plaintext

# `Math.round10` _(ext/math/round-10)_
Decimal round
```javascript
const round10 = require("ext/math/round-10");
round10(55.549, -1); // 55.5
round10(1.005, -2); // 1.01
```