/** * Get the logarithm of x with base 10 * @param {Integer} value */ export function log10(x) { return Math.log(x) / Math.log(10); } export { delta as substract } from './PositionUtil';