(object)
| 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 = []; |
no test coverage detected
searching dependent graphs…