Urara-Blog/node_modules/.pnpm-store/v3/files/e9/a45fd6dcec54540ee4db6d2f1158ef2c579570f1009b9ae5ad51920d3145f7c138917cac8845d617d01012dd53652945eec784f63a6f932f6e41c56afe9acf
2022-08-14 01:14:53 +08:00

24 lines
438 B
Text

'use strict';
// https://262.ecma-international.org/5.1/#sec-8
module.exports = function Type(x) {
if (x === null) {
return 'Null';
}
if (typeof x === 'undefined') {
return 'Undefined';
}
if (typeof x === 'function' || typeof x === 'object') {
return 'Object';
}
if (typeof x === 'number') {
return 'Number';
}
if (typeof x === 'boolean') {
return 'Boolean';
}
if (typeof x === 'string') {
return 'String';
}
};