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.

17 lines
367 B

  1. "use strict";
  2. module.exports = function (t, a) {
  3. var promise;
  4. a(t(), false);
  5. a(t(null), false);
  6. a(t("promise"), false);
  7. a(t({}), false);
  8. a(t(function () {}), false);
  9. a(t({ then: {} }), false);
  10. a(t({ then: function () {} }), true);
  11. promise = function () {};
  12. promise.then = {};
  13. a(t(promise), false);
  14. promise.then = function () {};
  15. a(t(promise), true);
  16. };