]> 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/#/remove.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 / # / remove.js
1 'use strict';
2
3 module.exports = function (t, a) {
4         var y = {}, z = {}, x = [9, z, 5, y, 'foo'];
5         t.call(x, y);
6         a.deep(x, [9, z, 5, 'foo']);
7         t.call(x, {});
8         a.deep(x, [9, z, 5, 'foo'], "Not existing");
9         t.call(x, 5);
10         a.deep(x, [9, z, 'foo'], "Primitive");
11         x = [9, z, 5, y, 'foo'];
12         t.call(x, z, 5, 'foo');
13         a.deep(x, [9, y], "More than one argument");
14 };