/**
* Gets object size (might be usefull sometimes)
* @param obj object
*/
function objectSize(obj) {
if (typeof obj !== 'object') { return; }
var size = 0,
key;
loop(obj, function () {
size += 1;
});
return size;
}
Be the first to comment
You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.