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.

15 lines
515 B

  1. "use strict";
  2. module.exports = function (t, a) {
  3. var x;
  4. a.throws(function () { t(0); }, TypeError, "0");
  5. a.throws(function () { t(false); }, TypeError, "false");
  6. a.throws(function () { t(""); }, TypeError, "''");
  7. a(t((x = {})), x, "Object");
  8. a(t((x = function () {})), x, "Function");
  9. a(t((x = new String("raz"))), x, "String object"); // Jslint: ignore
  10. a(t((x = new Date())), x, "Date");
  11. a.throws(function () { t(); }, TypeError, "Undefined");
  12. a.throws(function () { t(null); }, TypeError, "null");
  13. };