13 lines
276 B
JavaScript
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;
|
||
|
};
|
||
|
}
|