/**
* Creates an array of the own enumerable string keyed property values of `object`.
* Falls back to empty array for null/undefined.
*/exportdefaultfunctionvalues(object) {
if (object == null)
return [];
returnObject.values(Object(object));
}
//# sourceMappingURL=values.mjs.map