UNPKG

rfc-process

Version:

The default blueprint for ember-cli addons.

10 lines (6 loc) 164 B
import { helper } from '@ember/component/helper'; export function inc(params) { let num = parseInt(params[0]); return num + 1; } export default helper(inc);