count.js
1  'use strict';
2  
3  var keys = Object.keys;
4  
5  module.exports = function (obj) {
6  	return keys(obj).length;
7  };