Created
December 23, 2012 23:14
-
-
Save isaacs/4366637 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
/**package | |
{ "name": "one-file", | |
"version": "1.1.1", | |
"description":"Just this one file, it's a whole package!" } | |
**/ | |
module.exports = onefile | |
function onefile(n) { | |
if (n !== 1) | |
throw new Error("that's not how many files are in this package!") | |
return true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment