0.1.0 • Published 11 years ago

arrayof v0.1.0

Weekly downloads
3
License
MIT License
Repository
github
Last release
11 years ago

arrayof

Array.of for older browsers and node compat.

browser support

npm install arrayof
var test = require('tape');
var arrayOf = require('arrayof');
test('Array#of Exists', function (t) {
    t.assert(Array.of !== undefined);
    t.end();
});


test('Array.of returns the correct array', function(t) {
    var expect = [1,2,{name: 'michael'}, 3, 4];

    var result = Array.of(1,2,{name: 'michael'}, 3, 4);

    t.same(result, expect);
    t.end();
});

test('arrayOf return the correct array', function(t) {
    var expect = [1,2,{name: 'michael'}, 3, 4];

    var result = arrayOf(1,2,{name: 'michael'}, 3, 4);

    t.same(result, expect);
    t.end();
});