
Research
/Security News
9 Malicious NuGet Packages Deliver Time-Delayed Destructive Payloads
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.
angle-helper
Advanced tools
Helper functions to aid calculations with angles and degrees.
Install with NPM.
npm install angle-helper
Install with Yarn.
yarn add angle-helper
const angle = require('angle-helper');
// or
const {
toDegrees,
toRadians,
distance,
distances,
average,
weightedAverage,
} = require('angle-helper');
// convert to degrees
toDegrees(0.785398);
// convert to radians
toRadians(45);
// calculate distance
const targetAngle = 180;
distance(targetAngle, 45);
// calculate distances
const targetAngle = 180;
distances(targetAngle, [45, 50, 55]);
// calculate average
average([45, 50, 55, 60]);
// calculate weighted average
// weights do not have to add to 1
weightedAverage([45, 50, 55, 60], [0.2, 0.3, 0.2, 0.3]);
MIT
Publish package.
Fix distance formula when target angle < 90 and compared angles > 270.
Update dependencies.
FAQs
Helper functions for working with angles and degrees
We found that angle-helper 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.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.