2
0
mirror of https://github.com/status-im/consul.git synced 2025-03-02 14:20:39 +00:00

6 lines
168 B
JavaScript
Raw Normal View History

import { helper } from '@ember/component/helper';
export default helper(function substr([str = '', start = 0, length], hash) {
return str.substr(start, length);
});