log10 function

num log10(
  1. num v
)

Implementation

num log10(num v) {
  return math.log(v) / math.ln10;
}