CoffeeScript 主要?
我想要一个仅在未导入 my 的情况下运行的 main 函数,但是 实际运行而不是导入。
在coffeescript中是否有相当于python的name ==“main”?
现在我正在使用
is_main = process.argv[1]==__filename
if is_main
main()
,但我不知道是否存在更惯用的东西,我注意到 它不适用于旧版本的 CoffeeScript。
I'd like to have a main function that is run only if my is not imported but
actually run and not imported.
Is there an equivalent to python's name == "main" in coffeescript?
Right now I'm using
is_main = process.argv[1]==__filename
if is_main
main()
but I don't know if something more idiomatic exists, and I noticed
it did not work with older versions of coffeescript.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
相关JS问题< /a>
main() 如果 require.main 是模块
Related JS question
main() if require.main is module