mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-12-02 11:59:17 -05:00
17 lines
700 B
Text
17 lines
700 B
Text
|
// from: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/floor
|
||
|
|
||
|
export default function(type, value, exp) {
|
||
|
// If the exp is undefined or zero...
|
||
|
if (typeof exp === 'undefined' || +exp === 0) { return Math[type](value); }
|
||
|
value = +value;
|
||
|
exp = +exp;
|
||
|
// If the value is not a number or the exp is not an integer...
|
||
|
if (isNaN(value) || !(typeof exp === 'number' && exp % 1 === 0)) { return NaN; }
|
||
|
// Shift
|
||
|
value = value.toString().split('e');
|
||
|
value = Math[type](+(value[0] + 'e' + (value[1] ? (+value[1] - exp) : -exp)));
|
||
|
// Shift back
|
||
|
value = value.toString().split('e');
|
||
|
return +(value[0] + 'e' + (value[1] ? (+value[1] + exp) : exp));
|
||
|
}
|