frontend/.pnpm-store/v3/files/d3/fe37e770e186949e91eee4c7dcc4ab8d2770fc611bbc830cc39360226a0db0e5f2675a993314f889237ccbdd4edae8119bec7037e9c23fcaafa33326dcf0e3

13 lines
244 B
Plaintext

'use strict';
var ES5Type = require('../5/Type');
// https://262.ecma-international.org/6.0/#sec-ecmascript-data-types-and-values
module.exports = function Type(x) {
if (typeof x === 'symbol') {
return 'Symbol';
}
return ES5Type(x);
};