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.

13 lines
295 B

  1. "use strict";
  2. var isEmpty = require("../../object/is-empty");
  3. module.exports = function (t, a) {
  4. var x = {};
  5. a(t(x), x, "Empty: Returns same object");
  6. a(isEmpty(x), true, "Empty: Not changed");
  7. x.foo = "raz";
  8. x.bar = "dwa";
  9. a(t(x), x, "Same object");
  10. a(isEmpty(x), true, "Emptied");
  11. };