Security News
Research
Supply Chain Attack on Rspack npm Packages Injects Cryptojacking Malware
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
@flekschas/utils
Advanced tools
This is a collection of utility functions that I keep using across different projects. I primarily created this package for myself so I don't have to re-implement over and over again and have a central place for testing them.
npm install @flekschas/utils --save-dev
import { debounce } from '@flekschas/utils';
const hi = debounce(() => {
console.log('I am debounced');
}, 250);
For cherry picking from a specific topic do:
import { debounce } from '@flekschas/utils/timing';
The utility functions are organized by the following topics:
The three core goals of this collection are:
Whenever a function is reusable in a general context I might add it. When I add a function I will make sure it's performant. Finally, every function should be implement as simple as possible without harming performance. There's always a trade-off between performance and simplicity and my philosophy is the following: if the simple and complex implementation perform roughly the same, I choose the simple implementation. If a slightly more complex implementation is much faster I will favor the complex implementation. In any case, the API should always be simple and easy to understand!
v0.23.2
min()
and max()
ignore Number.NaN
valuesFAQs
A set of utility functions I use across projects
The npm package @flekschas/utils receives a total of 496 weekly downloads. As such, @flekschas/utils popularity was classified as not popular.
We found that @flekschas/utils 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
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.
Security News
Sonar’s acquisition of Tidelift highlights a growing industry shift toward sustainable open source funding, addressing maintainer burnout and critical software dependencies.