
Research
Supply Chain Attack on Axios Pulls Malicious Dependency from npm
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.
datatype-fu
Advanced tools
One of the most annoying things I find about the JavaScript language is the lack of support for strict typing when declaring function variable arguments. Because of this I’m forced to litter my code with conditions that contain typeof and instanceof to type check each argument.
This is my attempt to resolve this madness.
This package can be easily installed using:
$ bower install datatype-fu
$ npm install datatype-fu
var fu = require('datatype-fu').fu; // NodeJS usage
// standard types
var doSomething = fu(
['Array', 'Boolean', 'Function', 'Number', 'Object', 'String', 'undefined'],
function(arr, bool, func, num, obj, str, und) {
// do something with the values
}
);
doSomething(
['bucket1', 'bucket2', 'bucket3'],
true,
function() {},
1234567890,
{ key: 'value' },
'Hello World',
undefined
);
// Wildcard and conditional types
var doSomething = fu(
['*', 'Array|Boolean|undefined'],
function(any, cond) {
// do something with the values
}
);
General test cases have been created on jsPerf to measure fu'd operations across supported web browsers.
For feedback, bug reports, or other comments, feel free to contact me at: devel at mbrooks dot info
This package is distributed in the hope that it will be useful, but without any warranty; without even the implied warranty of merchantability or fitness for a particular purpose.
DataType-FU is provided under the terms of the MIT license
FAQs
Create JavaScript functions with built-in argument type detection.
We found that datatype-fu 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
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.

Security News
TeamPCP is partnering with ransomware group Vect to turn open source supply chain attacks on tools like Trivy and LiteLLM into large-scale ransomware operations.