mirror of
https://github.com/status-im/consul.git
synced 2025-02-11 21:27:20 +00:00
11 lines
246 B
JavaScript
11 lines
246 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
import { helper } from '@ember/component/helper';
|
|
|
|
export default helper(function substr([str = '', start = 0, length], hash) {
|
|
return str.substr(start, length);
|
|
});
|