2
0
mirror of https://github.com/status-im/consul.git synced 2025-02-18 16:46:36 +00:00
2018-06-12 11:24:35 +01:00

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);
});