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

ei

Package Overview
Dependencies
Maintainers
1
Versions
32
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ei - npm Package Compare versions

Comparing version 1.3.3 to 1.3.5

4

lib/App.js

@@ -12,2 +12,4 @@ /**

/* eslint-disable fecs-prefer-class */
/**

@@ -36,2 +38,4 @@ * App

/* eslint-enable fecs-prefer-class */
/**

@@ -38,0 +42,0 @@ * 处理一个请求

@@ -11,2 +11,4 @@ var babelHelpers = require("../babelHelpers");

/* eslint-disable fecs-prefer-class */
var Page = React.createClass({

@@ -13,0 +15,0 @@

15

lib/Emitter.js

@@ -11,2 +11,4 @@ /**

/* eslint-disable fecs-prefer-class */
/**

@@ -19,2 +21,4 @@ * Emitter

/* eslint-enable fecs-prefer-class */
/** @lends Emitter.prototype */

@@ -108,3 +112,8 @@ var mixins = {

me.off(name, onceHandler);
return handler.apply(me, arguments);
for (var _len = arguments.length, args = Array(_len), _key = 0; _key < _len; _key++) {
args[_key] = arguments[_key];
}
return handler.apply(me, args);
}

@@ -144,4 +153,4 @@

for (var _len = arguments.length, args = Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {
args[_key - 1] = arguments[_key];
for (var _len2 = arguments.length, args = Array(_len2 > 1 ? _len2 - 1 : 0), _key2 = 1; _key2 < _len2; _key2++) {
args[_key2 - 1] = arguments[_key2];
}

@@ -148,0 +157,0 @@

@@ -23,2 +23,4 @@ /**

/* eslint-disable fecs-prefer-class */
/**

@@ -34,2 +36,4 @@ * 页面

/* eslint-enable fecs-prefer-class */
/** @lends Page.prototype */

@@ -94,4 +98,5 @@ Page.prototype = {

createElement: function createElement(props) {
var context = this.context;
var View = this.View;
var View = this.view;

@@ -98,0 +103,0 @@ return React.createElement(

@@ -51,3 +51,7 @@ /**

if (typeof handler === 'function') {
handler.apply(me, arguments);
for (var _len = arguments.length, args = Array(_len), _key = 0; _key < _len; _key++) {
args[_key] = arguments[_key];
}
handler.apply(me, args);
}

@@ -54,0 +58,0 @@ });

{
"name": "ei",
"version": "1.3.3",
"version": "1.3.5",
"main": "lib/main.js",

@@ -29,3 +29,3 @@ "scripts": {

"expect": "^1.13.0",
"fecs": "^0.6.0-beta.1",
"fecs": "0.*",
"istanbul": "^0.4.1",

@@ -32,0 +32,0 @@ "jasmine": "^2.3.2",

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