web 3d图形渲染器
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
275 B

  1. "use strict";
  2. var indexOf = require("./e-index-of");
  3. module.exports = function (value/*, fromIndex*/) {
  4. var result = [], i, fromIndex = arguments[1];
  5. while ((i = indexOf.call(this, value, fromIndex)) !== -1) {
  6. result.push(i);
  7. fromIndex = i + 1;
  8. }
  9. return result;
  10. };