Files
est-frame/node_modules/core-js-pure/internals/try-to-string.js
2025-10-22 05:38:27 +00:00

11 lines
162 B
JavaScript
Executable File

'use strict';
var $String = String;
module.exports = function (argument) {
try {
return $String(argument);
} catch (error) {
return 'Object';
}
};