]> 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/array/#/indexes-of.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 / array / # / indexes-of.js
1 'use strict';
2
3 var indexOf = require('./e-index-of');
4
5 module.exports = function (value/*, fromIndex*/) {
6         var r = [], i, fromIndex = arguments[1];
7         while ((i = indexOf.call(this, value, fromIndex)) !== -1) {
8                 r.push(i);
9                 fromIndex = i + 1;
10         }
11         return r;
12 };