mirror of
https://github.com/status-im/consul.git
synced 2025-02-20 17:38:24 +00:00
13 lines
252 B
JavaScript
13 lines
252 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
import { helper } from '@ember/component/helper';
|
|
|
|
export function split([str = '', separator = ','], hash) {
|
|
return str.split(separator);
|
|
}
|
|
|
|
export default helper(split);
|