Socket
Socket
Sign inDemoInstall

get-params

Package Overview
Dependencies
0
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    get-params

Get a list of function's argument variable names


Version published
Weekly downloads
71K
increased by16.3%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

get-params

Build Status

Get a list of function's argument variable names (parameters).

Install

$ npm install --save get-params

Usage

var getParams = require('get-params');

var myFunction = function (one, two, three) {
	return 'blah';
};

var params = getParams(myFunction);
console.log(params); // ['one', 'two', 'three']

Browser

You can also run it in the browser. Install it with bower:

$ bower install --save get-params

Include the script in your HTML:

<script src="./bower_components/get-params/index.js"></script>

The library will be available in window.GetParams:

var params = GetParams(myFunction);

License

MIT © Fahad Ibnay Heylaal

Keywords

FAQs

Last updated on 13 May 2015

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc