File "from-entries-polyfill.ts"

Full Path: /home/vantageo/public_html/cache/cache/cache/cache/cache/.wp-cli/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/utils/from-entries-polyfill.ts
File size: 420 bytes
MIME-type: text/plain
Charset: utf-8

/**
 * A polyfill for Object.fromEntries function.
 *
 * @param {Array<[string, unknown]>} array Array to be turned back to object
 * @return {Record< string, unknown >} the newly created object
 */
export const fromEntriesPolyfill = (
	array: Array< [ string, unknown ] >
): Record< string, unknown > =>
	array.reduce< Record< string, unknown > >( ( obj, [ key, val ] ) => {
		obj[ key ] = val;
		return obj;
	}, {} );