@s-libs/micro-dash
    Preparing search index...

    Function round

    • Computes number rounded to precision.

      round(4.006); // 4
      round(4.006, 2); // 4.01
      round(4060, -2); // 4100

      Differences from lodash:

      • may return NaN with large precision values

      Contribution to minified bundle size, when it is the only function imported:

      • Lodash: 2,270 bytes
      • Micro-dash: 89 bytes

      Parameters

      • number: number
      • precision: number = 0

      Returns number