plural-magic
Advanced tools
Comparing version 0.0.1 to 0.0.2
@@ -1,3 +0,3 @@ | ||
function plural(count, item) { | ||
module.exports = function plural(count, item) { | ||
return `${item}${count > 1 && `s`}`; | ||
} | ||
}; |
{ | ||
"name": "plural-magic", | ||
"version": "0.0.1", | ||
"version": "0.0.2", | ||
"description": "A library to handle your plurals properly", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
1800