Created
July 25, 2016 23:30
-
-
Save MylesBorins/e2b27d94dc63e0453f5ba859b00a085f to your computer and use it in GitHub Desktop.
Original
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function initLibraryFS() { | |
console.log('initESLibraryFS is started!'); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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