my-idlers/node_modules/es5-ext/object/validate-stringifiable.js
cp6 fd22b0bf58 V2 (Laravel re-make)
V2 (Laravel re-make)
2022-03-06 02:02:12 +11:00

13 lines
318 B
JavaScript
Vendored

"use strict";
var isCallable = require("./is-callable");
module.exports = function (stringifiable) {
try {
if (stringifiable && isCallable(stringifiable.toString)) return stringifiable.toString();
return String(stringifiable);
} catch (e) {
throw new TypeError("Passed argument cannot be stringifed");
}
};