MCPcopy Create free account
hub / github.com/HtmlUnit/htmlunit / keys

Function keys

src/test/resources/libraries/bird/prototype.js:285–294  ·  view source on GitHub ↗
(object)

Source from the content-addressed store, hash-verified

283 }
284
285 function keys(object) {
286 if (Type(object) !== OBJECT_TYPE) { throw new TypeError(); }
287 var results = [];
288 for (var property in object) {
289 if (object.hasOwnProperty(property)) {
290 results.push(property);
291 }
292 }
293 return results;
294 }
295
296 function values(object) {
297 var results = [];

Callers 2

test_Base.jsFile · 0.50
test_Base.jsFile · 0.50

Calls 2

TypeFunction · 0.70
pushMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…