New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

yanoop

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

yanoop

Yet another noop utility package.

latest
npmnpm
Version
1.0.0
Version published
Maintainers
1
Created
Source

yanoop

Yet another noop utility package.

Provides utility functions: noop, throwop, and doop

npm install yanoop
require('yanoop');

API

noop

Does nothing.

function noop() {}

Use it if you are not sure a function is valid. Something like:

someFn = someFn || noop;
someFn();

throwop(err)

Throws if err is defined.

function throwop(err) {
  if (err) {
    throw err;
  }
}

doop(fn)

Tests fn and and calls it with the remaining given arguments.

function doop(fn) {
  if ('function' === typeof fn) {
    var args = Array.prototype.slice.call(arguments, 1);
    return fn.apply(this, args);
  }
}

Similar use case as noop. Something like:

doop(someFn, 1, 2, 3);

Keywords

noop

FAQs

Package last updated on 09 Feb 2014

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