Created
August 13, 2019 10:42
-
-
Save artemis15/710786cc15597a09c0ef3d287b0095d6 to your computer and use it in GitHub Desktop.
Example of Blocking I/O operation
This file contains 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
const _fs= require('fs'); | |
let _contents = _fs.readFileSync('package.json').toString(); | |
console.log(_contents); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment