dresscode-botex
Advanced tools
Comparing version 0.0.19 to 0.0.20
@@ -57,2 +57,14 @@ Botex.MutableArray = Bricks.inherit(Bricks.Observer, { | ||
getItem: function(index) { | ||
return this._value[index]; | ||
}, | ||
getFirstItem: function() { | ||
return this._value[0]; | ||
}, | ||
getLastItem: function() { | ||
return this._value[this._value.length - 1]; | ||
}, | ||
map: function(callback, ctx) { | ||
@@ -59,0 +71,0 @@ return this._value.map(function(item) { |
{ | ||
"name": "dresscode-botex", | ||
"version": "0.0.19", | ||
"version": "0.0.20", | ||
"dependencies": { | ||
@@ -5,0 +5,0 @@ "dresscode-bricks": "latest", |
46486
1245