Guest User

Untitled

a guest
Jul 19th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. module.exports = {
  2. lets: () => {},
  3. make: () => {},
  4. some: () => {},
  5. magic: () => {}
  6. }
  7.  
  8. // output
  9. const x = require('./your_module')
  10. console.log(x)
  11.  
  12. /*
  13. * {
  14. * lets: [Function: lets],
  15. * make: [Function: make],
  16. * some: [Function: some],
  17. * magic: [Function: magic]
  18. * }
  19. */
Add Comment
Please, Sign In to add comment