
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
A fluent Javascript DSL for parsing the arguments object. Allows for simple, concise optional arguments and repeating numbers of arguments.
Replace your if-else statements today!
var updateOrder = function() {
var args = parseArgs(arguments)
.required('name')
.optional('discountCode', -1, {type: 'number'})
.optional('referrer', null, {instance: User})
.required('address')
.end
$('#orderField').text(
'Name: ' + args.name + ', discount code: ' + args.discountCode +
', referrer: ' + args.referrer + ', address: ' + args.address
);
}
To start the chain, call parseArgs(arguments), with the arguments keyword literally
being passed into the function. You can then continue the chain with the following
methods:
required(name), where name is the name of the argument.optional(name, defaultValue, checker), where name is the name of the argument,
defaultValue is a default value to assign to the argument if nothing gets passed in,
and check is either an object with a type or instance field or a function. If check
is an object, the optional argument will have its type checked against the string set in
the type field (if provided), and check whether it's an instance of the class set
in the instance field (if provided). If it's a function, the function should be of the form
function(arg, index, args), where arg is the current argument being checked, index is
the index of that argument in the total number of arguments, and args the argument object
provided as an Array. If the function returns true, the argument will be considered to have
been passed in and the default value will not be set; if it returns false, the default value
will be set.many(name, checker), where name is the name of the argument, and checker is the same
as the checker above. Stores the passed-in values in an array; if none are passed in, the
array will be empty.Once the chain is done, just access the chain's end property to finish it off. The parsed
arguments will be stored in the returned object using the names given to each of the argument
parsing calls.
FAQs
A fluent DSL for parsing argument objects.
We found that parseArgs 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
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.