Projekt

Obecné

Profil

Stáhnout (391 Bajtů) Statistiky
| Větev: | Revize:
1
'use strict';
2

    
3
var callBound = require('../helpers/callBound');
4

    
5
var Type = require('./Type');
6

    
7
var $NumberValueOf = callBound('Number.prototype.valueOf');
8

    
9
// https://ecma-international.org/ecma-262/6.0/#sec-properties-of-the-number-prototype-object
10

    
11
module.exports = function thisNumberValue(value) {
12
	if (Type(value) === 'Number') {
13
		return value;
14
	}
15

    
16
	return $NumberValueOf(value);
17
};
18

    
(112-112/115)