Guest User

Untitled

a guest
Jul 23rd, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. // index.js
  2. import first from './first_module';
  3. import second from './second_module';
  4.  
  5. console.log(first);
  6. console.log(second(first));
  7.  
  8.  
  9. // first_module.js
  10. export default Math.PI;
  11.  
  12.  
  13. // second_module.js
  14. export default (a) => a * a * a;
Add Comment
Please, Sign In to add comment