UNPKG

ember-introjs

Version:
17 lines (13 loc) 245 B
define(['./forOwn'], function (forOwn) { /** * Get object size */ function size(obj) { var count = 0; forOwn(obj, function(){ count++; }); return count; } return size; });