Sha256: b08b002fa26766778488e808b1f67274b7752185935e85c4eff022292216695c

Contents?: true

Size: 691 Bytes

Versions: 54

Compression:

Stored size: 691 Bytes

Contents

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

Version data entries

54 entries across 53 versions & 4 rubygems

Version Path
immosquare-cleaner-0.1.60 node_modules/which-boxed-primitive/index.js
immosquare-cleaner-0.1.59 node_modules/which-boxed-primitive/index.js
immosquare-cleaner-0.1.58 node_modules/which-boxed-primitive/index.js
immosquare-cleaner-0.1.57 node_modules/which-boxed-primitive/index.js
immosquare-cleaner-0.1.56 node_modules/which-boxed-primitive/index.js
immosquare-cleaner-0.1.55 node_modules/which-boxed-primitive/index.js
immosquare-cleaner-0.1.54 node_modules/which-boxed-primitive/index.js
immosquare-cleaner-0.1.53 node_modules/which-boxed-primitive/index.js
immosquare-cleaner-0.1.52 node_modules/which-boxed-primitive/index.js
immosquare-cleaner-0.1.51 node_modules/which-boxed-primitive/index.js
immosquare-cleaner-0.1.50 node_modules/which-boxed-primitive/index.js
immosquare-cleaner-0.1.49 node_modules/which-boxed-primitive/index.js
immosquare-cleaner-0.1.48 node_modules/which-boxed-primitive/index.js
immosquare-cleaner-0.1.47 node_modules/which-boxed-primitive/index.js
immosquare-cleaner-0.1.46 node_modules/which-boxed-primitive/index.js
immosquare-cleaner-0.1.45 node_modules/which-boxed-primitive/index.js
immosquare-cleaner-0.1.44 node_modules/which-boxed-primitive/index.js
immosquare-cleaner-0.1.43 node_modules/which-boxed-primitive/index.js
immosquare-cleaner-0.1.42 node_modules/which-boxed-primitive/index.js
immosquare-cleaner-0.1.41 node_modules/which-boxed-primitive/index.js