8 lines
191 B
JavaScript
8 lines
191 B
JavaScript
import { helper } from '@ember/component/helper';
|
|
|
|
export function strSplit([str, sep]) {
|
|
return str ? str.split(sep || String.fromCharCode(0x1d)) : [];
|
|
}
|
|
|
|
export default helper(strSplit);
|