]> gerrit.simantics Code Review - simantics/district.git/blob - org.simantics.maps.server/node/node-v4.8.0-win-x64/node_modules/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/array/#/last.js
Adding integrated tile server
[simantics/district.git] / org.simantics.maps.server / node / node-v4.8.0-win-x64 / node_modules / npm / node_modules / node-gyp / node_modules / path-array / node_modules / array-index / node_modules / es6-symbol / node_modules / es5-ext / test / array / # / last.js
1 'use strict';
2
3 exports.__generic = function (t, a) {
4         a(t.call(this), this[this.length - 1]);
5 };
6
7 exports[''] = function (t, a) {
8         var x;
9         a(t.call([]), undefined, "Empty");
10         a(t.call(new Array(234), undefined, "Sparse empty"));
11         x = new Array(2342);
12         x[434] = {};
13         x[450] = {};
14         a(t.call(x), x[450], "Sparse");
15 };