I have a very simple question. I'm doing the simple-todos tutorial of meteor.
I want t add a utils.js file.
For now it only has :
function foo () {
return "text";
}
I've placed the file under myapp/client
And I'm trying to reach it from simple-todos.js, But I keep getting an error, saying foo is not defined.
How can I add a utils.js file that will be accessible by simple-todos.js?