MCPcopy Create free account
hub / github.com/Threadfin/Threadfin / getObjKeys

Function getObjKeys

html/js/base_ts.js:150–158  ·  view source on GitHub ↗
(obj)

Source from the content-addressed store, hash-verified

148 return data;
149}
150function getObjKeys(obj) {
151 var keys = new Array();
152 for (var i in obj) {
153 if (obj.hasOwnProperty(i)) {
154 keys.push(i);
155 }
156 }
157 return keys;
158}
159function getOwnObjProps(object) {
160 return object ? Object.getOwnPropertyNames(object) : [];
161}

Callers 3

sortTableFunction · 0.70
createSearchObjFunction · 0.70
changeChannelNumberFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected