UNPKG
@evojs/math
Version:
latest (0.5.0)
0.5.0
0.4.0
0.3.0
0.1.0
0.0.0
Nodejs math extension
github.com/evotool/js-math
evotool/js-math
@evojs/math
/
log.function.js
8 lines
(7 loc)
•
205 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
exports
.
log
=
void
0
;
function
log
(
x, y
) {
return
y ===
void
0
?
Math
.
log
(x) :
Math
.
log
(y) /
Math
.
log
(x); }
exports
.
log
= log;