Sha256: a907821773afa721419db122ee369c327a32eda836dd3f27bb824c80d543e550
Contents?: true
Size: 246 Bytes
Versions: 33
Compression:
Stored size: 246 Bytes
Contents
function JTObject(property_list){ this.property_list = property_list; } JTObject.prototype.each_property = function(handler){ var me = this; for(var index in this.property_list){ var key = this.property_list[index]; handler(me, key); } }
Version data entries
33 entries across 20 versions & 3 rubygems