Advertisement
Guest User

Untitled

a guest
Aug 29th, 2015
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ~/pupu @ cat pupu.js
  2. import {readFileSync} from 'fs'
  3.  
  4. console.log(readFileSync('pupu.txt'))
  5. ~/pupu @ babel pupu.js
  6. 'use strict';
  7.  
  8. var _fs = require('fs');
  9.  
  10. console.log((0, _fs.readFileSync)('pupu.txt'));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement