UNPKG

@fleetbase/ember-core

Version:

Provides all the core services, decorators and utilities for building a Fleetbase extension for the Console.

9 lines (7 loc) 278 B
import { dasherize } from '@ember/string'; export default function registerHelper(owner, name, helperFn) { const registrationName = `helper:${dasherize(name)}`; if (!owner.hasRegistration(registrationName)) { owner.register(registrationName, helperFn); } }