d509588cd2
Ember update - update ember-cli, ember-data, and ember to 3.4 series
10 lines
249 B
JavaScript
10 lines
249 B
JavaScript
import { helper as buildHelper } from '@ember/component/helper';
|
|
|
|
const TOOLS_ACTIONS = ['wrap', 'lookup', 'unwrap', 'rewrap', 'random', 'hash'];
|
|
|
|
export function toolsActions() {
|
|
return TOOLS_ACTIONS;
|
|
}
|
|
|
|
export default buildHelper(toolsActions);
|