retrieve-arguments

1.0.1 • Public • Published

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

/retrieve-arguments/

    Package Sidebar

    Install

    npm i retrieve-arguments

    Weekly Downloads

    1,730

    Version

    1.0.1

    License

    MIT

    Last publish

    Collaborators

    • schtoeffel