ship-gis/node_modules/core-js-pure/internals/to-string.js
2026-01-22 09:14:01 +09:00

10 lines
259 B
JavaScript

'use strict';
var classof = require('../internals/classof');
var $String = String;
module.exports = function (argument) {
if (classof(argument) === 'Symbol') throw new TypeError('Cannot convert a Symbol value to a string');
return $String(argument);
};