From cc97a4dd2a967e1c2273bd5f4c5f49a5bf2e2585 Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Wed, 27 Mar 2019 21:01:33 +0100 Subject: remove node_modules --- .../test/object/validate-stringifiable-value.js | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 node_modules/es5-ext/test/object/validate-stringifiable-value.js (limited to 'node_modules/es5-ext/test/object/validate-stringifiable-value.js') diff --git a/node_modules/es5-ext/test/object/validate-stringifiable-value.js b/node_modules/es5-ext/test/object/validate-stringifiable-value.js deleted file mode 100644 index 8283814ab..000000000 --- a/node_modules/es5-ext/test/object/validate-stringifiable-value.js +++ /dev/null @@ -1,22 +0,0 @@ -"use strict"; - -module.exports = function (t, a) { - var x; - a.throws(function () { - t(); -}, TypeError, "Undefined"); - a.throws(function () { - t(null); -}, TypeError, "Null"); - a(t(0), "0"); - a(t(false), "false"); - a(t(""), ""); - a(t({}), String({}), "Object"); - a(t(x = function () {}), String(x), "Function"); - a(t(x = new String("raz")), String(x), "String object"); // Jslint: ignore - a(t(x = new Date()), String(x), "Date"); - - a.throws(function () { - t(Object.create(null)); -}, TypeError, "Null prototype object"); -}; -- cgit v1.2.3