Skip to content

miketheprogrammer/arrayof

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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();
});

Bitdeli Badge

About

Array.of for older browsers and node compat.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 2

  •  
  •