8 lines
192 B
JavaScript
8 lines
192 B
JavaScript
|
import { helper } from '@ember/component/helper';
|
||
|
|
||
|
export function startsWith([needle, haystack = ''] /*, hash*/) {
|
||
|
return haystack.startsWith(needle);
|
||
|
}
|
||
|
|
||
|
export default helper(startsWith);
|