open-consul/ui-v2/app/utils/routing/wildcard.js

13 lines
276 B
JavaScript

import { get } from '@ember/object';
export default function(routes) {
return function(name) {
let wildcard = false;
try {
wildcard = get(routes, name)._options.path.indexOf('*') !== -1;
} catch (e) {
// passthrough
}
return wildcard;
};
}