# ember-helper-helper

> This add-on provides a `helper` helper that looks up the helper by name and returns a function with partial application.

Latest version **1.1.0** (published 2019-05-21) · MIT license · 0 weekly downloads

## Install

```sh
npm install ember-helper-helper
pnpm add ember-helper-helper
yarn add ember-helper-helper
bun add ember-helper-helper
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.1.0 |
| Published | 2019-05-21 |
| First published | 2018-04-06 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Node | 6.* \|\| 8.* \|\| >= 10.* |
| Dependencies | 1 |
| Unpacked size | 5.3 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 3 |
| Author | Keita Urashima |
| Maintainers | ursm |
| Keywords | ember-addon |

## Links

- npm: https://www.npmjs.com/package/ember-helper-helper
- Repository: https://github.com/ember-sapporo/ember-helper-helper
- npm.io page: https://npm.io/package/ember-helper-helper

## Dependencies (1)

- [ember-cli-babel](https://npm.io/package/ember-cli-babel.md) ^6.6.0

## Recent versions

- 1.1.0 (latest) — 2019-05-21
- 1.0.1 — 2018-04-06
- 1.0.0 — 2018-04-06

## README

ember-helper-helper
==============================================================================

This add-on provides a `helper` helper that looks up the helper by name and returns a function with partial application (commonly called "currying"). It is useful when you want to use a helper as an action.

Installation
------------------------------------------------------------------------------

```
ember install ember-helper-helper
```


Usage
------------------------------------------------------------------------------

``` hbs
<button value='42' onclick={{pipe-action (action (helper 'store/find-record' 'user') value='target.value') (action (mut user))}}>
  Find and set user 42
</button>
```

### See Also

- [DockYard/ember-composable-helpers](https://github.com/DockYard/ember-composable-helpers) (`pipe-action`)
- [ember-sapporo/ember-store-helpers](https://github.com/ember-sapporo/ember-store-helpers) (`store/find-record`)

Contributing
------------------------------------------------------------------------------

### Installation

* `git clone https://github.com/ember-sapporo/ember-helper-helper.git`
* `cd ember-helper-helper`
* `yarn install`

### Linting

* `yarn lint:js`
* `yarn lint:js --fix`

### Running tests

* `ember test` – Runs the test suite on the current Ember version
* `ember test --server` – Runs the test suite in "watch mode"
* `ember try:each` – Runs the test suite against multiple Ember versions

### Running the dummy application

* `ember serve`
* Visit the dummy application at [http://localhost:4200](http://localhost:4200).

For more information on using ember-cli, visit [https://ember-cli.com/](https://ember-cli.com/).

License
------------------------------------------------------------------------------

This project is licensed under the [MIT License](LICENSE.md).

---
_Source: https://npm.io/package/ember-helper-helper · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
