Back to Popmotion

toDecimal

packages/popcorn/docs/api/utilities/to-decimal.md

8.7.1336 B
Original Source

toDecimal

toDecimal will round a number to the specified decimal place.

<TOC />

Import

javascript
import { toDecimal } from '@popmotion/popcorn';

Usage

javascript
toDecimal(3.3333); // 3.33
toDecimal(6.6666, 1); // 6.67

Types

typescript
toDecimal(value: number, precision: number = 2): number