diff --git a/index.js b/index.js index 8424240..ac4ff49 100644 --- a/index.js +++ b/index.js @@ -1,3 +1,3 @@ -module.exports = function aJavaScriptPortOfTheUnixUtilityFalseReturnsTheBooleanValueFalse () { +module.exports = function returnFalse() { return false; }; diff --git a/package.json b/package.json index 7acbd0d..e47b358 100644 --- a/package.json +++ b/package.json @@ -3,6 +3,9 @@ "version": "0.0.4", "description": "A JavaScript port of the Unix utility 'false'. Returns the Boolean value `false`", "main": "index.js", + "files": [ + "index.js" + ], "scripts": { "test": "jake test" },