UNPKG

@lipagas/ember-core

Version:

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

11 lines (8 loc) 237 B
export default function pathToRoute(path = '') { if (!path.startsWith('console')) { path = `console.${path}`; } path = path.replace(/\//gi, '.'); path = path.replace('.ops.', '.operations.'); return path; }