UNPKG

119 BJavaScriptView Raw
1module.exports = function(object) {
2 return Object.keys(object).map(function (key) {
3 return object[key];
4 });
5};