UNPKG

uikit

Version:

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

9 lines (7 loc) 246 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; }