-
-
Save trptcolin/ad3b18cf251f5316a0ea5dc306efcf70 to your computer and use it in GitHub Desktop.
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
console.log("start"); | |
Object.defineProperty = function defineProperty(object) { | |
return object; | |
} | |
console.log("end"); |
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
Object.defineProperty = function defineProperty(object) { | |
return object; | |
} | |
console.log("end"); |
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
[colin:node-11.12.0-playground] $ ./node_modules/node/bin/node --version | |
v11.12.0 | |
[colin:node-11.12.0-playground] $ ./node_modules/node/bin/node /tmp/log_both.js | |
start | |
end | |
[colin:node-11.12.0-playground] $ ./node_modules/node/bin/node /tmp/log_end.js | |
[colin:node-11.12.0-playground] $ cd ../node-11.11.0-playground | |
[colin:node-11.11.0-playground] $ ./node_modules/node/bin/node --version | |
v11.11.0 | |
[colin:node-11.11.0-playground] $ ./node_modules/node/bin/node /tmp/log_both.js | |
start | |
end | |
[colin:node-11.11.0-playground] $ ./node_modules/node/bin/node /tmp/log_end.js | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment