1.2.0 • Published 7 years ago

fn-annotate v1.2.0

Weekly downloads
14,078
License
MIT
Repository
github
Last release
7 years ago

fn-annotate

NPM Version Build Status NPM Downloads License

Get the argument names of a JavaScript function.

Install

npm install --save fn-annotate

Usage

var annotate = require('fn-annotate');

function myFunction (user, document, db) {
  // do some stuff.
}

var argumentNames = annotate(myFunction);

// [ 'user', 'document', 'db' ]
console.log(argumentNames);

// [ 'x' ]
console.log(annotate(x => x));

// [ 'param' ]
console.log(annotate(function * (param) {}));