wallet-core/node_modules/es5-ext/test/safe-to-string.js

13 lines
373 B
JavaScript
Raw Normal View History

2017-08-14 05:01:11 +02:00
"use strict";
module.exports = function (t, a) {
a(t(), "undefined");
a(t(null), "null");
a(t(10), "10");
a(t("str"), "str");
2018-09-20 02:56:13 +02:00
a(t({ toString: function () { return "miszka"; } }), "miszka");
2017-08-14 05:01:11 +02:00
// eslint-disable-next-line symbol-description
if (typeof Symbol === "function") a(t(Symbol()), "Symbol()");
2018-09-20 02:56:13 +02:00
a(t(Object.create(null)), "<Non-coercible to string value>");
2017-08-14 05:01:11 +02:00
};