
Security News
Package Maintainers Call for Improvements to GitHub’s New npm Security Plan
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
@bakedpotatolord/calclib
Advanced tools
A lightweight and versatile set of functions for basic calculus operations.
A lightweight and versatile set of functions for basic calculus operations.
import {derivitiveAtX} from '@bakedpotatolord/calclib'
derivitiveAtX((x)=>20*x,0,0.0001) //returns 20
This library has functions for:
finds the area under a curve
integrate(1,0,1,0.001) //returns 1
4*integrate((x)=> Math.sqrt(1-x**2),0,1,0.0001) //returns ~PI
integrate((x)=> 2*Math.cos(x),0,Math.PI/2,0.001) //returns 2
returns the slope of the tangent line at a point on a function (positive accuracy approaches from right. negative approaches from left)
derivitiveAtX((x)=>20*x,0,0.0001) //returns 20
derivitiveAtX((x)=>1/x,0,-0.001) //returns Infinity
Returns the area of a function revolved around a given axis, between two points
areaAroundAxis(2,'x',0,1,0.0001) // returns 4*PI ~= 12.566
areaAroundAxis((x)=>x**2,'y',0,1,0.0001) // returns PI/2 ~= 1.57
returns the area of a shape bounded by the surface produced by the function, bound inputs, and the xy axis
integrate2D(1,0,1,0,1,0.001) // returns 1
integrate2D((x,y)=>Math.cos(x)*Math.cos(y),0,1,0,1,0.00001) //returns ~0.708
returns the length of an arc between two bounds
arcLength((x)=>x**2,0,2,0.001) //returns ~4.6467
arcLength((x)=>Math.sin(x),0,6,0.001) //returns ~7.24256
FAQs
A lightweight and versatile set of functions for basic calculus operations.
We found that @bakedpotatolord/calclib 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
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
Product
Socket Firewall is a free tool that blocks malicious packages at install time, giving developers proactive protection against rising supply chain attacks.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.