added js_helper module

This commit is contained in:
Jeena Paradies 2011-02-06 19:25:36 +01:00
parent 6166a109fc
commit 0361558f4b

8
src/js_helper.erl Normal file
View file

@ -0,0 +1,8 @@
-module(js_helper).
-export([test/0, echo/1]).
test() ->
{ok, test}.
echo(String) ->
{ok, String}.