fn-annotate

1.2.0 • Public • Published

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) {}));

Package Sidebar

Install

npm i fn-annotate

Weekly Downloads

13,521

Version

1.2.0

License

MIT

Last publish

Collaborators

  • aantthony