1.0.1 • Published 9 years ago

retrieve-arguments v1.0.1

Weekly downloads
6,577
License
MIT
Repository
-
Last release
9 years ago

retrieve-arguments

Build Status

Retrieves the argumentnames of a function

Installation

npm install retrieve-arguments

Usage

var retrieveArguments = require('retrieve-arguments');

retrieveArguments(function(element, index, array) {/*...*/}); // => ['element', 'index', 'array']
retrieveArguments(function() {/*...*/}); // => []
retrieveArguments(function ( test )) {/*...*/}); // => ['test']

CLI

$ retrieve-arguments node_modules/minimist
$ retrieve-arguments ./index.js
$ retrieve-arguments node_modules/minimist ./index.js