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

lbc

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

lbc - npm Package Compare versions

Comparing version 0.1.2 to 0.1.3

15

lbc.js

@@ -201,6 +201,17 @@ var net = require("net");

},
addBlock: function(workspace, logic, callback) {
/**
* Options:
* - name: block name
* - inActive: set to true to make inactive block
*/
addBlock: function(workspace, logic, options, callback) {
if(_.isFunction(options)) {
callback = options;
options = {};
}
options = options || {};
defaultApi.request(transaction(workspace, [{
add_block: {
active: true,
block_name: options.name,
active: !options.inActive,
logic: logic

@@ -207,0 +218,0 @@ }

2

package.json
{
"name": "lbc",
"version": "0.1.2",
"version": "0.1.3",
"main": "./lbc.js",

@@ -5,0 +5,0 @@ "devDepenencies": {

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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