Skip to content

Instantly share code, notes, and snippets.

@linonetwo
Created May 24, 2019 07:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save linonetwo/459434e8029177df2012a5162eeb983f to your computer and use it in GitHub Desktop.
Save linonetwo/459434e8029177df2012a5162eeb983f to your computer and use it in GitHub Desktop.
ES5 and ES6 import export #syntax
const xxx = require('./xxx');
module.exports = xxx;
export default xxx;
/// and in another es5 file
const xxx = require('./xxx').default;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment