diff --git a/.travis.yml b/.travis.yml index 44b9b18..c5c65ab 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,14 +12,11 @@ addons: language: node_js node_js: - - "0.8" - - "0.10" - - "0.12" - - "2.5" - - "3.2" - - "4.1" + - "4" - "5" - "6" + - "7" + - "8" install: - PATH="`npm bin`:`npm bin -g`:$PATH" diff --git a/appveyor.yml b/appveyor.yml index 03e7bac..c5e4bf1 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -6,16 +6,10 @@ environment: MSVS_VERSION: 2013 # Test against these versions of Node.js and io.js matrix: - # node.js - - nodejs_version: "0.8" - - nodejs_version: "0.10" - - nodejs_version: "0.12" - # io.js - - nodejs_version: "2.5" - - nodejs_version: "3.2" - - nodejs_version: "4.1" - - nodejs_version: "5" + - nodejs_version: "4" - nodejs_version: "6" + - nodejs_version: "7" + - nodejs_version: "8" platform: - x86 diff --git a/lib/array.js b/lib/array.js index b1003b0..b86ae13 100644 --- a/lib/array.js +++ b/lib/array.js @@ -152,6 +152,8 @@ module.exports = function Array (_type, _length) { // untilZeros() function ArrayType.untilZeros = untilZeros + + ArrayType.toString = function() { return '[ArrayType]';} return ArrayType }