kludge issue 513
[conkeror.git] / modules / object.js
blobc7edaee749969caa1d0422952c7c08377f2d8af9
1 /**
2 * (C) Copyright 2016 Scott Jaderholm
4 * Use, modification, and distribution are subject to the terms specified in the
5 * COPYING file.
6 **/
8 function object_keys (object) {
9 return Object.keys(object);
12 function object_values (object) {
13 return object_keys(object).map(function (key) { return object[key]; });
16 provide("object");