Skip to content

Instantly share code, notes, and snippets.

@MylesBorins
Created July 25, 2016 23:30
Show Gist options
  • Save MylesBorins/e2b27d94dc63e0453f5ba859b00a085f to your computer and use it in GitHub Desktop.
Save MylesBorins/e2b27d94dc63e0453f5ba859b00a085f to your computer and use it in GitHub Desktop.
Original
function initLibraryFS() {
console.log('initESLibraryFS is started!');
}
var fs = require('fs'); // Basic File System API
eval(fs.readFileSync('./helper.js').toString());
function performGetInit() {
initLibraryFS();
}
setTimeout(performGetInit,2000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment