Socket
Socket
Sign inDemoInstall

ee-arguments

Package Overview
Dependencies
3
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    ee-arguments

parses the arguments array passed to a function by variable type and their position in the array, returns the requested type & position


Version published
Weekly downloads
9
decreased by-35.71%
Maintainers
1
Install size
87.3 kB
Created
Weekly downloads
 

Readme

Source

ee-arguments

parses the arguments array passed to a function by variable type and their position in the array, returns the requested type & position

installation

npm install ee-arguments

build status

Build Status

API

Constructor

Creates an instance of the Arguments class bound to the current arguments object.

var Arguments = require('ee-arguments');

var myFunction(){
	var args = new Arguments(arguments);
};

myFunction();

get

Get the first occurence of a specific type from the arguments object, return an optional defined default if the type is not found.

var myFunction(){
	var args = new Arguments(arguments);

    args.get('string', 'defaultValue'); // do not use strings this way!
    args.get('boolean', true); // true
};

myFunction(1, new String('do not use strings this way!'), 'second string');

getByIndex

Returns the item of the defined type and the defined index from the arguments object. return an optional defined default if the type is not found.

var myFunction(){
	var args = new Arguments(arguments);

    args.getByIndex('string', 1, function default(){}); // second string
    args.getByIndex('string', 5); // undefined
};

myFunction(1, new String('do not use strings this way!'), 'second string');

Type specif methods

For the types defined below there are specific methods available

  • string

  • number

  • boolean

  • array

  • object

  • function

  • date

  • regexp

  • error

  • undefined

  • buffer

  • null

    var myFunction(){ var args = new Arguments(arguments);

      args.getString(); // do not use strings this way!
      args.getNumberByIndex(1, 'defaultValue'); // second string
    

    };

    myFunction(1, new String('do not use strings this way!'), 'second string');

Verions History

  • 1.0.0: complete rewrite, made it easier to user, made it faster. Chnaged the API
  • 1.0.1: Added travis.yml

Keywords

FAQs

Last updated on 30 Apr 2014

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