Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ToNumber.js « 5 « es-abstract « node_modules - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4a7a3b88553f1db80d3933116e0832845075630c (plain)
1
2
3
4
5
6
7
'use strict';

// http://www.ecma-international.org/ecma-262/5.1/#sec-9.3

module.exports = function ToNumber(value) {
	return +value; // eslint-disable-line no-implicit-coercion
};