├── .editorconfig ├── .ember-cli ├── .eslintignore ├── .eslintrc.js ├── .github ├── renovate.json5 └── workflows │ ├── ci.yml │ ├── plan-release.yml │ └── publish.yml ├── .gitignore ├── .npmignore ├── .prettierignore ├── .prettierrc.js ├── .release-plan.json ├── .template-lintrc.js ├── .watchmanconfig ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── RELEASE.md ├── addon ├── -private │ └── local-glimmer-interfaces-types.ts └── initializers │ ├── install-function-helper-manager.ts │ └── usable-function-manager.js ├── app └── initializers │ ├── install-function-helper-manager.js │ └── usable-function-manager.js ├── config ├── ember-try.js └── environment.js ├── ember-cli-build.js ├── index.js ├── package.json ├── pnpm-lock.yaml ├── testem.js ├── tests ├── dummy │ ├── app │ │ ├── app.ts │ │ ├── config │ │ │ └── environment.d.ts │ │ ├── index.html │ │ ├── router.ts │ │ ├── styles │ │ │ └── app.css │ │ └── templates │ │ │ └── application.hbs │ ├── config │ │ ├── ember-cli-update.json │ │ ├── environment.js │ │ ├── optional-features.json │ │ └── targets.js │ └── public │ │ └── robots.txt ├── index.html ├── rendering │ ├── ember-could-get-used-to-this-test.ts │ └── functions-test.ts ├── test-helper.ts └── unit │ ├── inert-test.js │ └── initializers │ └── usable-function-manager-test.js ├── tsconfig.json ├── types ├── dummy │ └── index.d.ts ├── global.d.ts └── overrides.d.ts └── vendor └── .gitkeep /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ember-polyfills/ember-functions-as-helper-polyfill/HEAD/.editorconfig -------------------------------------------------------------------------------- /.ember-cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ember-polyfills/ember-functions-as-helper-polyfill/HEAD/.ember-cli -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ember-polyfills/ember-functions-as-helper-polyfill/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ember-polyfills/ember-functions-as-helper-polyfill/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/renovate.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ember-polyfills/ember-functions-as-helper-polyfill/HEAD/.github/renovate.json5 -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ember-polyfills/ember-functions-as-helper-polyfill/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/plan-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ember-polyfills/ember-functions-as-helper-polyfill/HEAD/.github/workflows/plan-release.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ember-polyfills/ember-functions-as-helper-polyfill/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ember-polyfills/ember-functions-as-helper-polyfill/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ember-polyfills/ember-functions-as-helper-polyfill/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ember-polyfills/ember-functions-as-helper-polyfill/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = { 4 | singleQuote: true, 5 | }; 6 | -------------------------------------------------------------------------------- /.release-plan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ember-polyfills/ember-functions-as-helper-polyfill/HEAD/.release-plan.json -------------------------------------------------------------------------------- /.template-lintrc.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = { 4 | extends: 'recommended', 5 | }; 6 | -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | { 2 | "ignore_dirs": ["tmp", "dist"] 3 | } 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ember-polyfills/ember-functions-as-helper-polyfill/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ember-polyfills/ember-functions-as-helper-polyfill/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ember-polyfills/ember-functions-as-helper-polyfill/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ember-polyfills/ember-functions-as-helper-polyfill/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ember-polyfills/ember-functions-as-helper-polyfill/HEAD/RELEASE.md -------------------------------------------------------------------------------- /addon/-private/local-glimmer-interfaces-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ember-polyfills/ember-functions-as-helper-polyfill/HEAD/addon/-private/local-glimmer-interfaces-types.ts -------------------------------------------------------------------------------- /addon/initializers/install-function-helper-manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ember-polyfills/ember-functions-as-helper-polyfill/HEAD/addon/initializers/install-function-helper-manager.ts -------------------------------------------------------------------------------- /addon/initializers/usable-function-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ember-polyfills/ember-functions-as-helper-polyfill/HEAD/addon/initializers/usable-function-manager.js -------------------------------------------------------------------------------- /app/initializers/install-function-helper-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ember-polyfills/ember-functions-as-helper-polyfill/HEAD/app/initializers/install-function-helper-manager.js -------------------------------------------------------------------------------- /app/initializers/usable-function-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ember-polyfills/ember-functions-as-helper-polyfill/HEAD/app/initializers/usable-function-manager.js -------------------------------------------------------------------------------- /config/ember-try.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ember-polyfills/ember-functions-as-helper-polyfill/HEAD/config/ember-try.js -------------------------------------------------------------------------------- /config/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ember-polyfills/ember-functions-as-helper-polyfill/HEAD/config/environment.js -------------------------------------------------------------------------------- /ember-cli-build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ember-polyfills/ember-functions-as-helper-polyfill/HEAD/ember-cli-build.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ember-polyfills/ember-functions-as-helper-polyfill/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ember-polyfills/ember-functions-as-helper-polyfill/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ember-polyfills/ember-functions-as-helper-polyfill/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /testem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ember-polyfills/ember-functions-as-helper-polyfill/HEAD/testem.js -------------------------------------------------------------------------------- /tests/dummy/app/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ember-polyfills/ember-functions-as-helper-polyfill/HEAD/tests/dummy/app/app.ts -------------------------------------------------------------------------------- /tests/dummy/app/config/environment.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ember-polyfills/ember-functions-as-helper-polyfill/HEAD/tests/dummy/app/config/environment.d.ts -------------------------------------------------------------------------------- /tests/dummy/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ember-polyfills/ember-functions-as-helper-polyfill/HEAD/tests/dummy/app/index.html -------------------------------------------------------------------------------- /tests/dummy/app/router.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ember-polyfills/ember-functions-as-helper-polyfill/HEAD/tests/dummy/app/router.ts -------------------------------------------------------------------------------- /tests/dummy/app/styles/app.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dummy/app/templates/application.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ember-polyfills/ember-functions-as-helper-polyfill/HEAD/tests/dummy/app/templates/application.hbs -------------------------------------------------------------------------------- /tests/dummy/config/ember-cli-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ember-polyfills/ember-functions-as-helper-polyfill/HEAD/tests/dummy/config/ember-cli-update.json -------------------------------------------------------------------------------- /tests/dummy/config/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ember-polyfills/ember-functions-as-helper-polyfill/HEAD/tests/dummy/config/environment.js -------------------------------------------------------------------------------- /tests/dummy/config/optional-features.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ember-polyfills/ember-functions-as-helper-polyfill/HEAD/tests/dummy/config/optional-features.json -------------------------------------------------------------------------------- /tests/dummy/config/targets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ember-polyfills/ember-functions-as-helper-polyfill/HEAD/tests/dummy/config/targets.js -------------------------------------------------------------------------------- /tests/dummy/public/robots.txt: -------------------------------------------------------------------------------- 1 | # http://www.robotstxt.org 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /tests/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ember-polyfills/ember-functions-as-helper-polyfill/HEAD/tests/index.html -------------------------------------------------------------------------------- /tests/rendering/ember-could-get-used-to-this-test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ember-polyfills/ember-functions-as-helper-polyfill/HEAD/tests/rendering/ember-could-get-used-to-this-test.ts -------------------------------------------------------------------------------- /tests/rendering/functions-test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ember-polyfills/ember-functions-as-helper-polyfill/HEAD/tests/rendering/functions-test.ts -------------------------------------------------------------------------------- /tests/test-helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ember-polyfills/ember-functions-as-helper-polyfill/HEAD/tests/test-helper.ts -------------------------------------------------------------------------------- /tests/unit/inert-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ember-polyfills/ember-functions-as-helper-polyfill/HEAD/tests/unit/inert-test.js -------------------------------------------------------------------------------- /tests/unit/initializers/usable-function-manager-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ember-polyfills/ember-functions-as-helper-polyfill/HEAD/tests/unit/initializers/usable-function-manager-test.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ember-polyfills/ember-functions-as-helper-polyfill/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/dummy/index.d.ts: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /types/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ember-polyfills/ember-functions-as-helper-polyfill/HEAD/types/global.d.ts -------------------------------------------------------------------------------- /types/overrides.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ember-polyfills/ember-functions-as-helper-polyfill/HEAD/types/overrides.d.ts -------------------------------------------------------------------------------- /vendor/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------