Created
July 11, 2021 01:09
-
-
Save selfagency/852ccb375537ed51152f87be294a0d12 to your computer and use it in GitHub Desktop.
[if node app is cli, else]
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if (require.main === module) { | |
console.log('called directly'); | |
} else { | |
console.log('required as a module'); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment