Advertisement
GAMELASTER

Untitled

Mar 8th, 2019
272
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // module.mjs
  2.  
  3. let importantId = null
  4.  
  5. function run () {
  6.   return something()
  7.     .then(() => {
  8.       importantId = 'aaaa'
  9.     })
  10. }
  11.  
  12. export default {
  13.   run,
  14.   importantId
  15. }
  16.  
  17. // index.mjs
  18. import mod from './module'
  19. run().then(() => {
  20.     console.log(mod.importantId) // null
  21.   })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement