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.

11 lines
273 B

  1. // Inspired by: http://documentcloud.github.com/underscore/#compact
  2. "use strict";
  3. var isValue = require("../../object/is-value");
  4. var filter = Array.prototype.filter;
  5. module.exports = function () {
  6. return filter.call(this, function (val) { return isValue(val); });
  7. };