npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

basic-functions

v1.0.6

Published

Collection of functions that return specific values (noop, true, false, echo, etc)

Downloads

23

Readme

basic-functions

Build Status

A Simple module which contains common functions to save you time, code, and memory

Install

npm install basic-functions

or

npm install -g basic-functions

Then import the module into your program:

var just = require('basic-functions')

An simply reference the stored functions

Default Values

just.undefined() //undefined

just.null()      //null

just.true()      //true
//or just.True()

just.false()     //false
//or just.False()

just.zero()      //0
//or just[0], just['0'], just.Zero

just.one()       //1
//or just[1], just['1'], just.One

just.NaN()       //NaN
//or just.nan()

just.Infinity()  //Infinity
//or just.infinity()

just._Infinity() //-Infinity
//or just._infinity()

just.Array()     //[]
//or just.array()

just.Object()    //{}
//or just.object()

just.String()    //{}
//or just.string()

just.Function()  //function(){}
//or just.function()

just.this()      //this

//more detailed example of how 'this' can be used
var obj = {},
  f = just.this.bind( obj );

f() === obj; //true

Handlers

Empty Handler

Back to Top

  • noop
  • noOp

Does nothing

var fn = just.noop;
//or just.noOp

fn() //undefined

Calling a Function

Back to Top

  • call
  • run

Returns the result of invoking the first input argument

  • Only if the input argument is a Function
var fn = just.call;
//or just.run

function arrFn(){
  return ['a','b','c'];
}

fn( arrFn ) //['a','b','c']
  • call.with( args )

Returns the result of invoking the first input argument with args as the arguments

var fn = just.call.with( 5, 10 );
//or just.run.with( 5, 10 )

function add( a, b ){
  return a + b;
}

function multiply( a, b ){
  return a * b;
}

fn( add )      //15
fn( multiply ) //50
  • call.fn( fn )

Returns the result of invoking fn with the input arguments as the arguments

var fn = just.call.fn( add );
//or just.run.fn( add )

fn( 5, 10 ) //15
  • call.fn( fn ).with( args )

Returns the result of invoking fn with args as the arguments

var fn = just.call.fn( add ).with( 5, 10 );
//or just.run.fn( add ).with( 5, 10 )

fn()          //15
fn( 25, 100 ) //15
  • call.firstFn

Returns the result of invoking the first input argument that is a Function

var fn = just.call.firstFn;
//or just.run.firstFn

function numFn(){
  return 10;
}

function strFn(){
  return 'hi';
}

fn( false, numFn, strFn ) //10
  • call.firstFn.with( args )

Returns the result of invoking the first input argument that is a Function with args as the arguments

var fn = just.call.firstFn.with( 5, 10 );
//or just.run.firstFn.with( 5, 10 )

fn( [], add, multiply )     //15
  • call.nth( n )

Returns the result of invoking the nth input argument

Note: Index starts at 0

var fn = just.call.nth(1);
//or just.run.nth(1)

fn( false, numFn, strFn ) //10
  • call.nth( n ).with( args )

Returns the result of invoking the nth input argument with args as the arguments

var fn = just.call.nth(1).with( 5, 10 );
//or just.run.nth(1).with( 5, 10 )

fn( [], add, multiply ) //15
  • call.nth( n ).fn

Returns the result of invoking the nth input argument that is a Function

Note: Index starts at 0

var fn = just.call.nth(1).fn;
//or just.run.nth(1).fn

fn( false, numFn, strFn ) //'hi'
  • call.nth( n ).fn.with( args )

Returns the result of invoking the nth input argument that is a Function with args as the arguments

var fn = just.call.nth(1).fn.with( 5, 10 );
//or just.run.nth(1).fn.with( 5, 10 )

fn( [], add, multiply ) //50
  • call.key( key )

Returns the result of invoking the property key in the first input argument

var numObj = {
    fn : numFn
  },
  strObj = {
    fn : strFn
  },
  fn = just.call.key('fn');
  //or just.run.key('fn')

fn( numObj ) //10
fn( strObj ) //'hi'
  • call.key( key ).with( args )

Returns the result of invoking the property key in the first input argument with args as the arguments

var multObj = {
    fn : multiply
  },
  addObj = {
    fn : add
  },
  fn = just.call.key('fn').with( 5, 10 );
  //or just.run.key('fn').with( 5, 10 )

fn( multObj ) //50
fn( addObj )  //15
  • call.key( key ).inThis

Returns the result of invoking the property key in this with the input arguments as the arguments

var fn = just.call.key('fn').inThis.bind( addObj );
//or just.run.key('fn').inThis.bind( addObj )

fn( 5, 10 ) //15
  • call.key( key ).inThis.with( args )

Returns the result of invoking the property key in this with args as the arguments

var fn = just.call.key('fn').inThis.with( 5, 10 );
//or just.run.key('fn').inThis.with( 5, 10 ).bind( addObj )

fn()          //15
fn( 25, 100 ) //15
  • call.key( key ).inNth( n )

Returns the result of invoking the property key in the nth input argument

var fn = just.call.key('fn').inNth(1);
//or just.run.key('fn').inNth(1)

fn( false, numObj, strObj ) //10
  • call.key( key ).inNth( n ).with( args )

Returns the result of invoking the property key in the nth input argument with args as the arguments

var fn = just.call.key('fn').inNth(1).with( 5, 10 );
//or just.run.key('fn').inNth(1).with( 5, 10 )

fn( [], addObj, multObj ) //15
  • call.key( key ).inNth( n ).ofType( type )

Returns the result of invoking the property key in the nth input argument of type type

var fn = just.call.key('fn').inNth(1).ofType( Object );
//or just.run.key('fn').inNth(1).ofType( Object )

fn( false, numObj, strObj ) //'hi'
  • call.key( key ).inNth( n ).ofType( type ).with( args )

Returns the result of invoking the property key in the nth input argument of type type with args as the arguments

//can also use strings for the type
var fn = just.call.key('fn').inNth(1).ofType( 'object' ).with( 5, 10 );
//or just.run.key('fn').inNth(1).ofType( 'object' ).with( 5, 10 )

fn( [], addObj, multObj ) //50

Instantiating a Constructor

Back to Top

  • instantiate
  • new

Returns a new instance of the first input argument

  • Only if the input argument is a Function
var fn = just.instantiate;
//or just.new

fn( Array ) //[]
  • instantiate.with( args )

Returns a new instance of the first input argument with args as the arguments

var fn = just.instantiate.with( 'abc' );
//or just.new.with( 'abc' )

fn( Array )   //['abc']
  • instantiate.fn( fn )

Returns a new instance of fn with the input arguments as the arguments

var fn = just.instantiate.fn( Array );
//or just.new.fn( Array )

fn( 5 ) //[5]
  • instantiate.fn( fn ).with( args )

Returns a new instance of fn with args as the arguments

var fn = just.instantiate.fn( Array ).with( 5, 10 );
//or just.new.fn( Array ).with( 5, 10 )

fn()          //[5, 10]
fn( 25, 100 ) //[5, 10]
  • instantiate.firstFn

Returns a new instance of the first input argument that is a Function

var fn = just.instantiate.firstFn;
//or just.new.firstFn

fn( 100, Array, String ) //[]
  • instantiate.firstFn.with( args )

Returns a new instance of the first input argument that is a Function with args as the arguments

var fn = just.instantiate.firstFn.with( true );
//or just.new.firstFn.with( true )

fn( 100, Array, String ) //[ true ]
  • instantiate.nth( n )

Returns a new instance of the nth input argument

Note: Index starts at 0

var fn = just.instantiate.nth(1);
//or just.new.nth(1)

fn( 100, Array, String ) //[]
  • instantiate.nth( n ).with( args )

Returns a new instance of the nth input argument with args as the arguments

var fn = just.instantiate.nth(1).with( true );
//or just.new.nth(1).with( true )

fn( 100, Array, String ) //[ true ]
  • instantiate.nth( n ).fn

Returns a new instance of the nth input argument that is a Function

Note: Index starts at 0

var fn = just.instantiate.nth(1).fn;
//or just.new.nth(1).fn

fn( 100, Array, String ) //''
  • instantiate.nth( n ).fn.with( args )

Returns a new instance of the nth input argument that is a Function with args as the arguments

var fn = just.instantiate.nth(1).fn.with( true );
//or just.new.nth(1).fn.with( true )

fn( 100, Array, String ) //'true'
  • instantiate.key( key )

Returns a new instance of the property key in the first input argument

var arrObj = {
    fn : Array
  },
  strObj = {
    fn : String
  },
  fn = just.instantiate.key('fn');
  //or just.new.key('fn')

fn( arrObj ) //[]
fn( strObj ) //''
  • instantiate.key( key ).with( args )

Returns a new instance of the property key in the first input argument with args as the arguments

var fn = just.instantiate.key('fn').with( true );
//or just.new.key('fn').with( true )

fn( arrObj ) //[ true ]
  • instantiate.key( key ).inThis

Returns a new instance of the property key in this with the input arguments as the arguments

var fn = just.instantiate.key('fn').inThis.bind( arrObj );
//or just.new.key('fn').inThis.bind( arrObj )

fn()       //[]
fn( 'hi' ) //[ 'hi' ]
  • instantiate.key( key ).inThis.with( args )

Returns a new instance of the property key in this with args as the arguments

var fn = just.instantiate.key('fn').inThis.with( true ).bind( arrObj );
//or just.new.key('fn').inThis.with( true ).bind( arrObj )

fn()       //[ true ]
fn( 'hi' ) //[ true ]
  • instantiate.key( key ).inNth( n )

Returns a new instance of the property key in the nth input argument

var fn = just.instantiate.key('fn').inNth(1);
//or just.new.key('fn').inNth(1)

fn( 100, arrObj, strObj ) //[]
  • instantiate.key( key ).inNth( n ).with( args )

Returns a new instance of the property key in the nth input argument with args as the arguments

var fn = just.instantiate.key('fn').inNth(1).with( true );
//or just.new.key('fn').inNth(1).with( true )

fn( 100, arrObj, strObj ) //[ true ]
  • instantiate.key( key ).inNth( n ).ofType( type )

Returns a new instance of the property key in the nth input argument of type type

var fn = just.instantiate.key('fn').inNth(1).ofType( Object );
//or just.new.key('fn').inNth(1).ofType( Object )

fn( 100, arrObj, strObj ) //''
  • instantiate.key( key ).inNth( n ).ofType( type ).with( args )

Returns a new instance of the property key in the nth input argument of type type with args as the arguments

var fn = just.instantiate.key('fn').inNth(1).ofType( 'object' ).with( true );
//or just.new.key('fn').inNth(1).ofType( 'object' ).with( true );

fn( 100, arrObj, strObj ) //'true'

Throwing an Error

Back to Top

  • throw
  • error

Throws the first input argument

var fn = just.throw;
//or just.error

fn( new Error ) //throws Error
  • throw.error( err )

Throws fn

var fn = just.throw.error( new TypeError );
//or just.error.error( new TypeError )

fn() //throws TypeError
  • throw.firstError

Throws the first input argument that is an instanceof Error

var fn = just.throw.firstError;
//or just.error.firstError

fn( {}, new Error, new TypeError ) //throws Error
  • throw.nth( n )

Throws the nth input argument

Note: Index starts at 0

var fn = just.throw.nth(1);
//or just.error.nth(1)

fn( {}, new Error, new TypeError ) //throws Error
  • throw.nth( n ).error

Throws the nth input argument that is an instanceof Error

Note: Index starts at 0

var fn = just.throw.nth(1).error;
//or just.error.nth(1).error

fn( {}, new Error, new TypeError ) //throws TypeError
  • throw.key( key )

Throws the property key in the first input argument

var errObj = {
    err : new Error
  },
  typeErrObj = {
    err : new TypeError
  },
  fn = just.throw.key('err');
  //or just.error.key('err')

fn( errObj )     //throws Error
fn( typeErrObj ) //throws TypeError
  • throw.key( key ).inThis

Throws the property key in this

var fn = just.throw.key('err').inThis.bind( errObj );
//or just.error.key('err').inThis.bind( errObj )

fn() //throws Error
  • throw.key( key ).inNth( n )

Throws the property key in the nth input argument

var fn = just.throw.key('err').inNth(1);
//or just.error.key('err').inNth(1)

fn( 'hi', errObj, typeErrObj ) //throws Error
  • throw.key( key ).inNth( n ).ofType( type )

Throws the property key in the nth input argument of type type

var fn = just.throw.key('err').inNth(1).ofType( Object );
//or just.error.key('err').inNth(1).ofType( Object )

fn( 'hi', errObj, typeErrObj ) //throws TypeError

Echoing a Value

Back to Top

  • echo
  • return

Returns the first input argument

var fn = just.echo;
//or just.return

fn( 10 ) //10
  • echo.value( v )

Returns v

var fn = just.echo.value( 10 );
//or just.return.value( 10 )

fn()       //10
fn( true ) //10
  • echo.nth( n )

Returns the nth input argument

Note: Index starts at 0

var fn = just.echo.nth(1);
//or just.return.nth(1)

fn( 'hi', 100, 'there' ) //100
  • echo.nth( n ).ofType( type )

Returns the nth input argument of type type

Note: Index starts at 0

var fn = just.echo.nth(1).ofType('string');
//or just.return.nth(1).ofType('string')

fn( 'hi', 100, 'there' ) //'there'
  • echo.key( key )

Returns the property key in the first input argument

var obj = {
    str : 'hi',
    num : 100
  },
  fn = just.echo.key('str');
  //or just.return.key('str')

fn( obj ) //'hi'
  • echo.key( key ).inThis

Returns the property key in this

var fn = just.echo.key('str').inThis.bind( obj );
//or just.return.key('str').inThis.bind( obj )

fn() //'hi'
  • echo.key( key ).inNth( n )

Returns the property key in the nth input argument

var fn = just.echo.key('num').inNth(1);
//or just.return.key('num').inNth(1)

fn( 'hi', obj ) //100
  • echo.key( key ).inNth( n ).ofType( type )

Returns the property key in the nth input argument of type type

var fn = just.echo.key('str').inNth(1).ofType( Object );
//or just.return.key('str').inNth(1).ofType( Object )

fn( 'hi', {}, obj ) //'hi'