'a'
mh-two-thousand-and-two
2024-04-12 44d2c92345cd156a59fc327b3060292a282d2893
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
'use strict';
 
var isString = require('is-string');
var isNumber = require('is-number-object');
var isBoolean = require('is-boolean-object');
var isSymbol = require('is-symbol');
var isBigInt = require('is-bigint');
 
// eslint-disable-next-line consistent-return
module.exports = function whichBoxedPrimitive(value) {
    // eslint-disable-next-line eqeqeq
    if (value == null || (typeof value !== 'object' && typeof value !== 'function')) {
        return null;
    }
    if (isString(value)) {
        return 'String';
    }
    if (isNumber(value)) {
        return 'Number';
    }
    if (isBoolean(value)) {
        return 'Boolean';
    }
    if (isSymbol(value)) {
        return 'Symbol';
    }
    if (isBigInt(value)) {
        return 'BigInt';
    }
};