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

Function getObjKeys

ts/base_ts.ts:175–185  ·  view source on GitHub ↗
(obj)

Source from the content-addressed store, hash-verified

173}
174
175function getObjKeys(obj) {
176 var keys = new Array();
177
178 for (var i in obj) {
179 if (obj.hasOwnProperty(i)) {
180 keys.push(i);
181 }
182 }
183
184 return keys;
185}
186
187function getOwnObjProps(object: Object): string[] {
188 return object ? Object.getOwnPropertyNames(object) : []

Callers 9

showLogsFunction · 0.70
sortTableFunction · 0.70
createSearchObjFunction · 0.70
changeChannelNumberFunction · 0.70
createTableContentMethod · 0.70
createLayoutFunction · 0.70
getFilesMethod · 0.70
getProgramsMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected