remove isArray shim

[closes ]
This commit is contained in:
Wei Lu 2014-03-03 11:27:19 +08:00
commit bde9b13b15
5 changed files with 13 additions and 20 deletions

View file

@ -1,12 +1,5 @@
var Crypto = require('./crypto-js/crypto');
/**
* Cross-browser compatibility version of Array.isArray.
*/
exports.isArray = Array.isArray || function(o) {
return Object.prototype.toString.call(o) === '[object Array]';
}
/**
* Create a byte array representing a number with the given length
*/