@openui5/sap.ui.core
Version:
OpenUI5 Core Library sap.ui.core
36 lines (32 loc) • 980 B
JavaScript
/*!
* OpenUI5
* (c) Copyright 2026 SAP SE or an SAP affiliate company.
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
*/
sap.ui.define(function() {
"use strict";
/**
* Returns values from an object.
*
* <b>Note:</b>Whenever possible, please try to use the native function <code>Object.values</code> instead. Especially, if you don't need to rely on handling null values as argument.
*
* @function
* @since 1.58
* @alias module:sap/base/util/values
* @param {Object|undefined} mObject - Object to be extracted
* @returns {any[]} - array of object values, if object does not contain values, an empty array will be returned
* @public
*/
var fnValues = function values(mObject) {
// Default is always an empty array
if (
typeof mObject === "undefined"
|| mObject === null
|| mObject !== mObject // eslint-disable-line no-self-compare
) {
return [];
}
return Object.values(mObject);
};
return fnValues;
});