UNPKG

sitespeed.io

Version:

sitespeed.io is an open-source tool for comprehensive web performance analysis, enabling you to test, monitor, and optimize your website’s speed using real browsers in various environments.

15 lines (14 loc) 388 B
export function shortAsset(url, longVersion) { if (longVersion) { if (url.length > 100) { let shortUrl = url.replace(/\?.*/, ''); url = shortUrl.slice(0, 80) + '...' + shortUrl.slice(-17); } } else { if (url.length > 40) { let shortUrl = url.replace(/\?.*/, ''); url = shortUrl.slice(0, 20) + '...' + shortUrl.slice(-17); } } return url; }