
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
Floors the given value to the specified number of decimal places.
npm install floor
Returns the largest integer less than or equal to value.
var floor = require('floor');
floor(.95); // 0
floor(4); // 4
floor(7.004); // 7
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
FAQs
Floors the given value to the specified number of decimal places.
We found that floor demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.