8 lines
205 B
JavaScript
8 lines
205 B
JavaScript
import { helper } from '@ember/component/helper';
|
|
|
|
import rightTrim from 'consul-ui/utils/right-trim';
|
|
|
|
export default helper(function([str = '', search = ''], hash) {
|
|
return rightTrim(str, search);
|
|
});
|