valid-object.js 506 B

123456789101112131415
  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. };