Some checks failed
CI / go (push) Waiting to run
CI / docker (push) Waiting to run
CI / lint-go (push) Waiting to run
CI / lint-docs (push) Waiting to run
CI / check-paperclip (push) Waiting to run
Deploy static site / Deploy to GitHub Pages (push) Has been cancelled
Deploy static site / Deploy via Docker to hatch.surf (push) Has been cancelled
Resolved conflicts by taking GitHub versions for: - .dockerignore, .gitignore, Dockerfile, README.md, docker-compose.yml Kept deploy.sh updated to: - Pull from GitHub (primary source) - Push to Gitea (push-mirror) - Build from site/ directory (GitHub structure) Co-Authored-By: Paperclip <noreply@paperclip.ing>
27 lines
794 B
JavaScript
27 lines
794 B
JavaScript
'use strict';
|
|
|
|
var GetIntrinsic = require('get-intrinsic');
|
|
|
|
var $TypeError = require('es-errors/type');
|
|
var $Number = GetIntrinsic('%Number%');
|
|
var isPrimitive = require('../helpers/isPrimitive');
|
|
|
|
var ToPrimitive = require('./ToPrimitive');
|
|
var StringToNumber = require('./StringToNumber');
|
|
|
|
// https://262.ecma-international.org/13.0/#sec-tonumber
|
|
|
|
module.exports = function ToNumber(argument) {
|
|
var value = isPrimitive(argument) ? argument : ToPrimitive(argument, $Number);
|
|
if (typeof value === 'symbol') {
|
|
throw new $TypeError('Cannot convert a Symbol value to a number');
|
|
}
|
|
if (typeof value === 'bigint') {
|
|
throw new $TypeError('Conversion from \'BigInt\' to \'number\' is not allowed.');
|
|
}
|
|
if (typeof value === 'string') {
|
|
return StringToNumber(value);
|
|
}
|
|
return +value;
|
|
};
|