
Security News
Crates.io Implements Trusted Publishing Support
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
args-pattern
Advanced tools
A Nodejs lib that arranges the arguments passed to a function based on pattern string
A Nodejs lib that arranges the arguments passed to a function based on pattern string
This library intends to help the developers to maintain backwards compatibility in their functions, by making and maintaining optional parameters, and not worrying to write code to assign the correct values to the arguments
npm install parse-args -S
// params ([name], [email], age, [gender])
function testFn(name="vin", email="diesel@mail.com", age, gender="female"){
if(!email) {
age = name;
name = "vin"
} else if (!age) {
age = email
email = "diesel@mail.com"
}
}
testFn("john", 34)
var parseArgs = require("args-pattern")
function testFn() {
let [name, email, age, gender] = parseArgs(arguments, "[name] [, email] , age [, gender]", {
args: ['vin', 'diesel@mail.com', 34, "female"]
})
// Output name === "john"
// Output email === "diesel@mail.com"
// Output age === 35
// Output gender === "female"
}
testFn("john", 35)
Even though the real world examples can get a little more complicate, parse-args
library
will be there to rescue, so that you can avoid a lot of spaghetti code :thumbsup:
npm install
mocha test.js
MIT
FAQs
A Nodejs lib that arranges the arguments passed to a function based on pattern string
We found that args-pattern 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
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
Research
/Security News
Undocumented protestware found in 28 npm packages disrupts UI for Russian-language users visiting Russian and Belarusian domains.
Research
/Security News
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.