Sha256: b08b002fa26766778488e808b1f67274b7752185935e85c4eff022292216695c

Contents?: true

Size: 691 Bytes

Versions: 46

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

46 entries across 45 versions & 4 rubygems

Version Path
immosquare-cleaner-0.1.27 node_modules/which-boxed-primitive/index.js
immosquare-cleaner-0.1.26 node_modules/which-boxed-primitive/index.js
immosquare-cleaner-0.1.25 node_modules/which-boxed-primitive/index.js
immosquare-cleaner-0.1.24 node_modules/which-boxed-primitive/index.js
immosquare-cleaner-0.1.23 node_modules/which-boxed-primitive/index.js
immosquare-cleaner-0.1.22 node_modules/which-boxed-primitive/index.js
immosquare-cleaner-0.1.21 node_modules/which-boxed-primitive/index.js
immosquare-cleaner-0.1.20 node_modules/which-boxed-primitive/index.js
immosquare-cleaner-0.1.19 node_modules/which-boxed-primitive/index.js
immosquare-cleaner-0.1.18 node_modules/which-boxed-primitive/index.js
immosquare-cleaner-0.1.17 node_modules/which-boxed-primitive/index.js
immosquare-cleaner-0.1.16 node_modules/which-boxed-primitive/index.js
immosquare-cleaner-0.1.14 node_modules/which-boxed-primitive/index.js
immosquare-cleaner-0.1.13 node_modules/which-boxed-primitive/index.js
immosquare-cleaner-0.1.12 node_modules/which-boxed-primitive/index.js
immosquare-cleaner-0.1.11 node_modules/which-boxed-primitive/index.js
immosquare-cleaner-0.1.10 node_modules/which-boxed-primitive/index.js
immosquare-cleaner-0.1.9 node_modules/which-boxed-primitive/index.js
immosquare-cleaner-0.1.8 node_modules/which-boxed-primitive/index.js
immosquare-cleaner-0.1.7 node_modules/which-boxed-primitive/index.js