astro-ghostcms/.pnpm-store/v3/files/d3/fe37e770e186949e91eee4c7dcc...

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);
};