Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { extendAction } from '@automattic/state-utils';
import { camelCase, map, reduce, set, snakeCase } from 'lodash';
const doBypassDataLayer = {
meta: {
dataLayer: {
doBypass: true,
},
},
};
export const bypassDataLayer = ( action ) => extendAction( action, doBypassDataLayer );
/**
* Deeply converts keys of an object using provided function.
* @param {Object} obj object to convert
* @param {Function} fn function to apply to each key of the object
* @returns {Object} a new object with all keys converted
*/
export function convertKeysBy( obj, fn ) {
if ( Array.isArray( obj ) ) {
return map( obj, ( v ) => convertKeysBy( v, fn ) );
}
if ( typeof obj === 'object' && obj !== null ) {
return reduce(
obj,
( result, value, key ) => {
const newKey = fn( key );
const newValue = convertKeysBy( value, fn );
return set( result, [ newKey ], newValue );
},
{}
);
}
return obj;
}
/**
* @deprecated Use TS version of this function: `import { convertSnakeCaseToCamelCase } from 'calypso/state/data-layer/convert-snake-case-to-camel-case';`
*
* Deeply converts keys from the specified object to camelCase notation.
* @param {Object} obj object to convert
* @returns {Object} a new object with all keys converted
*/
export const convertToCamelCase = ( obj ) => convertKeysBy( obj, camelCase );
/**
* Deeply convert keys of an object to snake_case.
* @param {Object} obj Object to convert
* @returns {Object} a new object with snake_cased keys
*/
export const convertToSnakeCase = ( obj ) => convertKeysBy( obj, snakeCase );