KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
args-list
★ 11
Open GitHub ↗
Extract method arguments names into array.
Download README (.md)
Explore Similar Repositories
debugmail
:
SMTP testing server
winston-dynamodb
:
DynamoDB Transport for Winston
talk-oss-zero-to-sixty
:
Running OSS Projects: From Zero to Sixty
dropwizard-authorization
:
Authorization extension for Dropwizard framework
winston-fluent
:
No description available.
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
args-list
?
Download (.md)
# Args list Extract method arguments names into array. Commonly used for dependency injection. ## Install ``` npm install args-list --save ``` ``` component install scottcorgan/args-list ``` ``` bower install args-list --save ``` ## Usage ```javascript var argsList = require('args-list'); function someMethod (arg1, arg2, arg3) { // do something here } var list = argsList(someMethod); // Outputs ['arg1', 'arg2', 'arg3'] ```