美文网首页
module.parent

module.parent

作者: wizardofbinary | 来源:发表于2017-09-05 23:27 被阅读0次

在python中,我们会使用如下代码来判断是否入口文件

if __name__ == '__main__':
        # do something

那么在node中呢?今天读了commonjs规范之后发现也是有方法的

if (!module.parent) {
        // do something
}

虽然用途不大,但还是很神奇的。

相关文章

  • module.parent

    在python中,我们会使用如下代码来判断是否入口文件 那么在node中呢?今天读了commonjs规范之后发现也...

网友评论

      本文标题:module.parent

      本文链接:https://www.haomeiwen.com/subject/xdzpjxtx.html