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.

10 lines (9 loc) 181 B
export function label(value, ok, warning) { value = value || 0; if (value > ok) { return 'ok'; } else if (value > warning) { return 'warning'; } return 'error'; }