UNPKG

@shopware-ag/dive

Version:

Shopware Spatial Framework

10 lines (8 loc) 239 B
import shift from '../helper/shift.ts'; export default function toFixedExp( number: number, decimals: number = 0, ): string { const n = shift(number, +decimals); return shift(Math.round(n), -decimals).toFixed(decimals); }