added js_helper module
This commit is contained in:
parent
6166a109fc
commit
0361558f4b
1 changed files with 8 additions and 0 deletions
8
src/js_helper.erl
Normal file
8
src/js_helper.erl
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
-module(js_helper).
|
||||||
|
-export([test/0, echo/1]).
|
||||||
|
|
||||||
|
test() ->
|
||||||
|
{ok, test}.
|
||||||
|
|
||||||
|
echo(String) ->
|
||||||
|
{ok, String}.
|
Reference in a new issue