ohctechv3/.svn/pristine/24/246c3d519fbfd79816d482b606724086a3c3512a.svn-base

13 lines
244 B
Plaintext
Raw Permalink Normal View History

2024-10-28 15:03:36 +05:30
'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);
};