New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

inferno-shared

Package Overview
Dependencies
Maintainers
5
Versions
182
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

inferno-shared - npm Package Compare versions

Comparing version 1.4.1 to 1.4.2-alpha.5f5d5901

12

dist/index.js

@@ -18,3 +18,3 @@ "use strict";

function isStringOrNumber(obj) {
const type = typeof obj;
var type = typeof obj;
return type === 'string' || type === 'number';

@@ -67,3 +67,3 @@ }

}
throw new Error(`Inferno Error: ${message}`);
throw new Error("Inferno Error: " + message);
}

@@ -76,4 +76,4 @@ exports.throwError = throwError;

function combineFrom(first, second) {
const obj = {};
let key;
var obj = {};
var key;
if (first) {

@@ -100,6 +100,6 @@ for (key in first) {

Lifecycle.prototype.trigger = function trigger() {
const listeners = this.listeners;
for (let i = 0, len = listeners.length; i < len; i++) {
var listeners = this.listeners;
for (var i = 0, len = listeners.length; i < len; i++) {
listeners[i]();
}
};
{
"name": "inferno-shared",
"version": "1.4.1",
"version": "1.4.2-alpha.5f5d5901",
"license": "MIT",

@@ -5,0 +5,0 @@ "description": "Helpers functions for Inferno",

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