
Company News
/Security News
Socket Selected for OpenAI's Cybersecurity Grant Program
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.
Yet another noop utility package.
Provides utility functions: noop, throwop, and doop
npm install yanoop
require('yanoop');
noopDoes 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);
FAQs
Yet another noop utility package.
We found that yanoop demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.

Security News
Socket CEO Feross Aboukhadijeh joins 10 Minutes or Less, a podcast by Ali Rohde, to discuss the recent surge in open source supply chain attacks.

Research
/Security News
Campaign of 108 extensions harvests identities, steals sessions, and adds backdoors to browsers, all tied to the same C2 infrastructure.