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

lc2

Package Overview
Dependencies
Maintainers
2
Versions
33
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

lc2 - npm Package Compare versions

Comparing version 1.4.3 to 1.4.4

8

package.json
{
"name": "lc2",
"version": "1.4.3",
"version": "1.4.4",
"description": "browser automation library",

@@ -9,3 +9,3 @@ "main": "src/index.js",

"dev": "webpack-dev-server --host 0.0.0.0 --port 3001",
"build": "npm update && webpack && webpack -p --output-filename lemoncase.min.js"
"build": "webpack && webpack -p --output-filename lemoncase.min.js"
},

@@ -34,3 +34,3 @@ "engines": {

"devDependencies": {
"angular": "^1.5.6",
"angular": "^1.5.7",
"ava": "^0.15.2",

@@ -50,3 +50,3 @@ "codemirror": "^5.14.2",

"dependencies": {
"lc2-selector": "^1.0.0",
"lc2-selector": "^1.0.3",
"oc-trigger": "^1.1.1",

@@ -53,0 +53,0 @@ "sizzle": "^2.3.0"

@@ -23,3 +23,2 @@ /*jslint sloppy: true, nomen: true */

LOG = instructionType.LOG,
CONSOLE = instructionType.CONSOLE,

@@ -227,13 +226,4 @@ PROCESS = instructionType.PROCESS,

operation: function Log() {
this.$case.$pushLog([LOG, this.$case.$runExp(this.body('msg'))]);
},
bodyFactory: function (msg) {
return {
msg: msg
};
}
});
IF(CONSOLE, {
operation: function Console() {
var msg = this.$case.$runExp(this.body('msg'));
this.$case.$pushLog([LOG, msg], this.line());
console.log(msg);

@@ -247,2 +237,2 @@ settings.consoleFn(msg);

}
});
});

@@ -12,4 +12,3 @@ module.exports = {

LOG: 0x20,
CONSOLE: 0x21,
PROCESS: 0xFF
};

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

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