Created
May 29, 2017 22:01
-
-
Save casprwang/d9e693a9e5cf3221a8ce5d9f1c7a89be to your computer and use it in GitHub Desktop.
node.exports
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
// exports.module | |
// hello.js | |
exports.log = () => { console.log('logging') } | |
// index.js | |
import log from './hello.js' | |
log.log() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment