mirror of
https://github.com/status-im/consul.git
synced 2025-01-09 13:26:07 +00:00
ae71d6ce96
The original version of ember-block-slots doesn't support ember 3 and it seems like development has stalled on the original version. This adds a modified version as an in-repo-addon that is compatible with ember 3.
7 lines
188 B
JavaScript
7 lines
188 B
JavaScript
import { A } from '@ember/array';
|
|
import { helper } from '@ember/component/helper';
|
|
export function blockParams(params) {
|
|
return A(params.slice());
|
|
}
|
|
export default helper(blockParams);
|