Skip to content

Instantly share code, notes, and snippets.

@3stacks
Created February 21, 2018 22:33
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 3stacks/5d672514374ac2676a0a4bb1bc9b491b to your computer and use it in GitHub Desktop.
Save 3stacks/5d672514374ac2676a0a4bb1bc9b491b to your computer and use it in GitHub Desktop.
javascript bundling index.js example
import multiplier from './some-file.js';
export function someMaths() {
console.log(multiplier);
console.log(5 * multiplier);
console.log(10 * multiplier);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment