MCPcopy
hub / github.com/dli/paint / keysInObject

Function keysInObject

wrappedgl.js:1080–1088  ·  view source on GitHub ↗
(object)

Source from the content-addressed store, hash-verified

1078 */
1079
1080 function keysInObject (object) {
1081 var count = 0;
1082 for (var key in object) {
1083 if (object.hasOwnProperty(key)) {
1084 count += 1;
1085 }
1086 }
1087 return count;
1088 }
1089
1090 //asynchronous
1091 WrappedGL.prototype.createProgramsFromFiles = function (programParameters, successCallback, failureCallback) {

Callers 1

wrappedgl.jsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…