Created
October 23, 2017 03:12
-
-
Save khaosdoctor/23da61540fae15c0a8ec5a0907c5f99a to your computer and use it in GitHub Desktop.
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
module.exports = 1 | |
module.exports = NaN | |
module.exports = 'foo' | |
module.exports = { foo: 'bar' } | |
module.exports = [ 'foo', 'bar' ] | |
module.exports = function foo () {} | |
module.exports = () => {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment