Sha256: afcb5c8d8daccffb32c1fdeeda5f5dc9f510ea524b7ca19be3fbef1c5b8c04be

Contents?: true

Size: 1.28 KB

Versions: 50

Compression:

Stored size: 1.28 KB

Contents

'use strict';

var whichBoxedPrimitive = require('which-boxed-primitive');
var callBound = require('call-bind/callBound');
var hasSymbols = require('has-symbols')();
var hasBigInts = require('has-bigints')();

var stringToString = callBound('String.prototype.toString');
var numberValueOf = callBound('Number.prototype.valueOf');
var booleanValueOf = callBound('Boolean.prototype.valueOf');
var symbolValueOf = hasSymbols && callBound('Symbol.prototype.valueOf');
var bigIntValueOf = hasBigInts && callBound('BigInt.prototype.valueOf');

module.exports = function unboxPrimitive(value) {
	var which = whichBoxedPrimitive(value);
	if (typeof which !== 'string') {
		throw new TypeError(which === null ? 'value is an unboxed primitive' : 'value is a non-boxed-primitive object');
	}

	if (which === 'String') {
		return stringToString(value);
	}
	if (which === 'Number') {
		return numberValueOf(value);
	}
	if (which === 'Boolean') {
		return booleanValueOf(value);
	}
	if (which === 'Symbol') {
		if (!hasSymbols) {
			throw new EvalError('somehow this environment does not have Symbols, but you have a boxed Symbol value. Please report this!');
		}
		return symbolValueOf(value);
	}
	if (which === 'BigInt') {
		return bigIntValueOf(value);
	}
	throw new RangeError('unknown boxed primitive found: ' + which);
};

Version data entries

50 entries across 50 versions & 2 rubygems

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