Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

call-if-defined

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

call-if-defined

Micro-library of functions that call a given function if it is defined.

  • 1.1.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

call-if-defined NPM Package

ISC License

A micro-library of functions that call a given function if it is defined.

This library was created for both convenience purposes and for the cleaner code that can be produced by using its provided functions.

NOTE: Compatible with ES4+ browsers, AMD, CommonJS, ES6 Imports, and HTML script references.

Changelog

Install

$ npm i --save call-if-defined

Usage

import { callIfDefined, callIfDefinedNull } from 'call-if-defined';


function myFunc(valueToPrint, valueToReturn) {
  console.log(valueToPrint);

  return valueToReturn;
}


callIfDefined(myFunc, "Fish fingers and custard", 42); // Prints "Fish fingers and custard" & returns 42
callIfDefined(myFunc, "Fish fingers and custard", 42); // Prints nothing and returns `undefined`

callIfDefinedNull(myFunc, "Fish fingers and custard", 42); / Prints "Fish fingers and custard" & returns 42
callIfDefinedNull(myFunc, "Fish fingers and custard", 42); // Prints nothing and returns `null`

API

callIfDefined(func, [...funcParams])

Returns the result of calling func with the given funcParams, if func is defined; otherwise, returns undefined.

  • func *

    The function to be called, if it is defined.

  • ...funcParams *

    The paramters to pass to func, if func is defined.


callIfDefinedNull(func, [...funcParams])

Returns the result of calling func with the given funcParams, if func is defined; otherwise, returns null.

  • func *

    The function to be called, if it is defined.

  • ...funcParams *

    The paramters to pass to func, if func is defined.



License

ISC License (ISC)

Copyright (c) 2018, Brandon D. Sara (http://bsara.pro/)

Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.

THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

Keywords

FAQs

Package last updated on 09 Oct 2018

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc