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 --- .../es5-ext/test/object/validate-stringifiable.js | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 node_modules/es5-ext/test/object/validate-stringifiable.js (limited to 'node_modules/es5-ext/test/object/validate-stringifiable.js') diff --git a/node_modules/es5-ext/test/object/validate-stringifiable.js b/node_modules/es5-ext/test/object/validate-stringifiable.js deleted file mode 100644 index e75a4157b..000000000 --- a/node_modules/es5-ext/test/object/validate-stringifiable.js +++ /dev/null @@ -1,18 +0,0 @@ -"use strict"; - -module.exports = function (t, a) { - var x; - a(t(), "undefined", "Undefined"); - a(t(null), "null", "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