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
274 B

  1. // Inspired by Google Closure:
  2. // http://closure-library.googlecode.com/svn/docs/
  3. // closure_goog_array_array.js.html#goog.array.clear
  4. "use strict";
  5. var value = require("../../object/valid-value");
  6. module.exports = function () {
  7. value(this).length = 0;
  8. return this;
  9. };