Math.js 194 B

123456789
  1. /**
  2. * Get the logarithm of x with base 10
  3. * @param {Integer} value
  4. */
  5. export function log10(x) {
  6. return Math.log(x) / Math.log(10);
  7. }
  8. export { delta as substract } from './PositionUtil';