New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

floor

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

floor

Floors the given value to the specified number of decimal places.

latest
Source
npmnpm
Version
0.0.0
Version published
Maintainers
1
Created
Source

floor.js

Floors the given value to the specified number of decimal places.

Install

npm install floor

API

floor(value)

Returns the largest integer less than or equal to value.

var floor = require('floor');

floor(.95); // 0
floor(4); // 4
floor(7.004); // 7

floor(value, scale)

Returns the largest integer less than or equal to value to scale (+/-) number of decimal places.

var floor = require('floor');

floor(55.51, -1); // 55.5
floor(51, 1); // 50
floor(-55.59, -1); // -55.6
floor(-59, 1); // -60

floor(12489.9482, 5); // 0
floor(12489.9482, 4); // 10000
floor(12489.9482, 3); // 12000
floor(12489.9482, 2); // 12400
floor(12489.9482, 1); // 12480
floor(12489.9482, 0); // 12489
floor(12489.9482, -1); // 12489.9
floor(12489.9482, -2); // 12489.94
floor(12489.9482, -3); // 12489.948
floor(12489.9482, -4); // 12489.9482
floor(12489.9482, -5); // 12489.9482

Keywords

floor

FAQs

Package last updated on 25 Nov 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts