webpack/test/cases/parsing/javascript/index.js

5 lines
128 B
JavaScript
Raw Normal View History

it("should parse sparse arrays", function() { // issue #136
[,null].should.have.length(2);
[0,,,0].should.have.length(4);
});