mirror of
https://github.com/status-im/consul.git
synced 2025-01-09 13:26:07 +00:00
7 lines
201 B
JavaScript
7 lines
201 B
JavaScript
import { helper } from '@ember/component/helper';
|
|
import leftTrim from 'consul-ui/utils/left-trim';
|
|
|
|
export default helper(function([str = '', search = ''], hash) {
|
|
return leftTrim(str, search);
|
|
});
|