2 * (C) Copyright 2016 Scott Jaderholm
4 * Use, modification, and distribution are subject to the terms specified in the
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
]; });