I'm using django-coffeescript in my project. But there is some with conversion.
In my hello.coffee file:
hello = ()->
console.log 'Hello'
But it converts to:
// Generated by CoffeeScript 1.6.3
(function() {
var hello;
hello = function() {
return console.log('hello');
};
}).call(this);
I want:
var hello = function() {
return console.log('hello');
}