UNPKG

@fleetbase/ember-ui

Version:

Fleetbase UI provides all the interface components, helpers, services and utilities for building a Fleetbase extension into the Console.

13 lines (10 loc) 244 B
import { helper } from '@ember/component/helper'; export default helper(function isUrl([value]) { if (typeof value !== 'string') return; try { new URL(value); return true; } catch { return false; } });