UNPKG

uikit

Version:

UIkit is a lightweight and modular front-end framework for developing fast and powerful web interfaces.

11 lines (9 loc) 280 B
import { $$ } from './dom'; import { isVisible } from './filter.js'; export function getMaxPathLength(el) { return isVisible(el) ? Math.ceil( Math.max(0, ...$$('[stroke]', el).map((stroke) => stroke.getTotalLength?.() || 0)), ) : 0; }