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.

16 lines
341 B

  1. "use strict";
  2. var o = { 1: 1, 2: 2, 3: 3 };
  3. module.exports = function (t, a) {
  4. var o2 = {};
  5. t(o, function (value, name) {
  6. o2[name] = value;
  7. return true;
  8. });
  9. a(JSON.stringify(o2), JSON.stringify(o), "Iterates");
  10. a(t(o, function () { return true; }), true, "Succeeds");
  11. a(t(o, function () { return false; }), false, "Fails");
  12. };