|
Last change
on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 12 days ago |
|
Fix frontend appearance
|
-
Property mode
set to
100644
|
|
File size:
346 bytes
|
| Rev | Line | |
|---|
| [9af201e] | 1 | 'use strict';
|
|---|
| 2 |
|
|---|
| 3 | var callBound = require('call-bound');
|
|---|
| 4 |
|
|---|
| 5 | var $NumberValueOf = callBound('Number.prototype.valueOf');
|
|---|
| 6 |
|
|---|
| 7 | // https://262.ecma-international.org/6.0/#sec-properties-of-the-number-prototype-object
|
|---|
| 8 |
|
|---|
| 9 | module.exports = function thisNumberValue(value) {
|
|---|
| 10 | if (typeof value === 'number') {
|
|---|
| 11 | return value;
|
|---|
| 12 | }
|
|---|
| 13 |
|
|---|
| 14 | return $NumberValueOf(value);
|
|---|
| 15 | };
|
|---|
| 16 |
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.