UNPKG

diagram-js

Version:

A toolbox for displaying and modifying diagrams on the web

11 lines (9 loc) 192 B
/** * Get the logarithm of x with base 10. * * @param {number} x */ export function log10(x) { return Math.log(x) / Math.log(10); } export { delta as substract } from './PositionUtil';