Created
December 25, 2019 14:52
-
-
Save Vlasterx/7e96e67aa5391e64a4f078d1636ed015 to your computer and use it in GitHub Desktop.
Export/Import reminder
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
module.exports = (option) => { | |
console.log('It works!', option) | |
} |
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
export let Name = (option) => { | |
console.log('It works!', option) | |
} |
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
import { Name } from './export-es6' | |
Name('bla') |
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
require('./export-common')('Bla') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment