UNPKG
rfc-process
Version:
latest (1.0.0)
1.0.0
0.4.1
0.4.0
0.3.0
0.2.4
0.2.3
0.2.2
0.2.1
0.2.0
0.1.1
0.1.0
The default blueprint for ember-cli addons.
github.com/empress/rfc-process
empress/rfc-process
rfc-process
/
addon
/
helpers
/
inc.js
10 lines
(6 loc)
•
164 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{ helper }
from
'@ember/component/helper'
;
export
function
inc
(
params
) {
let
num =
parseInt
(params[
0
]);
return
num +
1
; }
export
default
helper
(inc);