Socket
Socket
Sign inDemoInstall

dresscode-botex

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

dresscode-botex - npm Package Compare versions

Comparing version 0.0.11 to 0.0.12

4

lib/Botex/MutableArray.js

@@ -5,2 +5,3 @@ Botex.MutableArray = Bricks.inherit(Bricks.Observer, {

this._value = value ? value.slice(0) : [];
this._count = new Quantum.Quant(this._value.length);
this._dependents = [];

@@ -46,2 +47,3 @@ },

this._value.splice.apply(this._value, [start, deleteCount].concat(insertItems));
this._count.setValue(this._value.length);
this._dependents.forEach(function(dependent) {

@@ -54,3 +56,3 @@ dependent.dependent.splice(start, deleteCount, insertItems.map(dependent.callback, dependent.ctx));

getCount: function() {
return this._value.length;
return this._count;
},

@@ -57,0 +59,0 @@

{
"name": "dresscode-botex",
"version": "0.0.11",
"version": "0.0.12",
"dependencies": {

@@ -5,0 +5,0 @@ "dresscode-bricks": "latest",

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