0.0.1 • Published 12 years ago
object-count v0.0.1
Object count
Count the number of properties in an object, or return the number of items in an array. It doesn't look up in the prototype chain.
Installation
npm install object-countHow to use
Require object-count:
var count = require("object-count");Use it with an object:
var anObject = {
"property1": "with",
"property2": "some",
"property3": "data"
};
count(anObject); // 3It also works with an array:
var anArray = ["with", "some", "data"];
count(anArray); // 3LICENSE
MIT
0.0.1
12 years ago