]> git.r.bdr.sh - rbdr/cologne/commitdiff
Uses slice instead of splice now
authorBen Beltran <redacted>
Wed, 15 Jan 2014 18:23:29 +0000 (12:23 -0600)
committerBen Beltran <redacted>
Wed, 15 Jan 2014 18:23:29 +0000 (12:23 -0600)
lib/cobalt.js
package.json

index e1f4beab731fc77f607324a4d24b37db74cde133..9f7f6c08a0dfc6dcac8bb29b032de8c4c2b42786 100644 (file)
       },
 
       log : function () {
-        this._log.apply(this, [7].concat([].splice.call(arguments, 0)));
+        this._log.apply(this, [7].concat(Array.prototype.slice.call(arguments)));
       },
 
       debug : function () {
       },
 
       info : function () {
-        this._log.apply(this, [6].concat([].splice.call(arguments, 0)));
+        this._log.apply(this, [6].concat(Array.prototype.slice.call(arguments)));
       },
 
       notice : function () {
-        this._log.apply(this, [5].concat([].splice.call(arguments, 0)));
+        this._log.apply(this, [5].concat(Array.prototype.slice.call(arguments)));
       },
 
       warn : function () {
-        this._log.apply(this, [4].concat([].splice.call(arguments, 0)));
+        this._log.apply(this, [4].concat(Array.prototype.slice.call(arguments)));
       },
 
       error : function () {
-        this._log.apply(this, [3].concat([].splice.call(arguments, 0)));
+        this._log.apply(this, [3].concat(Array.prototype.slice.call(arguments)));
       },
 
       dir : function () {
index 22de2d54fe19de74ba5684f988ef0ae75c437244..1f0dc23b0f3208a13193778698159ba2b017fe2b 100644 (file)
@@ -17,7 +17,7 @@
       "url" : "http://github.com/ktlacaelel"
     }
   ],
-  "version" : "0.2.1",
+  "version" : "0.2.2",
   "dependencies" : {
     "neon" : "1.0.x",
     "socket.io-client" : "0.9.x",