Skip to content

Instantly share code, notes, and snippets.

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