Sha256: 1d0644b331c080e9ac936651d3af1e2b6999694406c2e8858e77de8f7f29c1c9

Contents?: true

Size: 326 Bytes

Versions: 2

Compression:

Stored size: 326 Bytes

Contents

'use strict';

var o = [1, 2, [3, 4, [5, 6], 7, 8], 9, 10, [11, 12, [13, 14]], 15];

module.exports = {
	__generic: function (t, a) {
		a(t.call(this).length, 3);
	},
	"Nested Arrays": function (t, a) {
		var result = t.call(o);
		a.not(o, result);
		a.deep(result, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]);
	}
};

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
guard-sass-lint-0.1.2 node_modules/es5-ext/test/array/#/flatten.js
guard-sass-lint-0.1.1 node_modules/es5-ext/test/array/#/flatten.js