diff --git a/addon/helpers/cq-aspect-ratio.js b/addon/helpers/cq-aspect-ratio.js index af93873d..3c223bc9 100644 --- a/addon/helpers/cq-aspect-ratio.js +++ b/addon/helpers/cq-aspect-ratio.js @@ -1,6 +1,6 @@ import { helper } from '@ember/component/helper'; -export function cqAspectRatio(params, hash) { +function cqAspectRatio(params, hash) { const dimension = 'aspectRatio'; const { min = 0, max = Infinity } = hash; diff --git a/addon/helpers/cq-height.js b/addon/helpers/cq-height.js index b79368d5..5a544a05 100644 --- a/addon/helpers/cq-height.js +++ b/addon/helpers/cq-height.js @@ -1,6 +1,6 @@ import { helper } from '@ember/component/helper'; -export function cqHeight(params, hash) { +function cqHeight(params, hash) { const dimension = 'height'; const { min = 0, max = Infinity } = hash; diff --git a/addon/helpers/cq-width.js b/addon/helpers/cq-width.js index 129865cb..c07e18ee 100644 --- a/addon/helpers/cq-width.js +++ b/addon/helpers/cq-width.js @@ -1,6 +1,6 @@ import { helper } from '@ember/component/helper'; -export function cqWidth(params, hash) { +function cqWidth(params, hash) { const dimension = 'width'; const { min = 0, max = Infinity } = hash; diff --git a/app/helpers/cq-aspect-ratio.js b/app/helpers/cq-aspect-ratio.js index 080df7cd..788a4f04 100644 --- a/app/helpers/cq-aspect-ratio.js +++ b/app/helpers/cq-aspect-ratio.js @@ -1,4 +1 @@ -export { - cqAspectRatio, - default, -} from 'ember-container-query/helpers/cq-aspect-ratio'; +export { default } from 'ember-container-query/helpers/cq-aspect-ratio'; diff --git a/app/helpers/cq-height.js b/app/helpers/cq-height.js index 539c9dbf..134b038b 100644 --- a/app/helpers/cq-height.js +++ b/app/helpers/cq-height.js @@ -1 +1 @@ -export { cqHeight, default } from 'ember-container-query/helpers/cq-height'; +export { default } from 'ember-container-query/helpers/cq-height'; diff --git a/app/helpers/cq-width.js b/app/helpers/cq-width.js index 622676b6..d02f1939 100644 --- a/app/helpers/cq-width.js +++ b/app/helpers/cq-width.js @@ -1 +1 @@ -export { cqWidth, default } from 'ember-container-query/helpers/cq-width'; +export { default } from 'ember-container-query/helpers/cq-width';