si-funciona
Version:
Funciones de utilidad para uso general. [General usage utility functions.]
10 lines (9 loc) • 339 B
TypeScript
import 'core-js/stable';
/**
* Helper function for testing if the item is an Object or Array that does not have any properties
* @memberOf module:objectHelpers
* @param {Object|Array} item - Object or Array to test
* @returns {boolean}
*/
declare const emptyObject: (item: Array<any> | Object) => boolean;
export default emptyObject;