mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-08-31 04:58:28 +08:00
24 lines
448 B
JavaScript
24 lines
448 B
JavaScript
/**
|
|
* @param str
|
|
* @return {string}
|
|
*/
|
|
export const toSnakeCase = ( str ) => {
|
|
return str
|
|
.replace( /[\w]([A-Z])/g, function ( m ) {
|
|
return m[ 0 ] + '_' + m[ 1 ];
|
|
} )
|
|
.toLowerCase();
|
|
};
|
|
|
|
/**
|
|
* @param obj
|
|
* @return {{}}
|
|
*/
|
|
export const convertKeysToSnakeCase = ( obj ) => {
|
|
const newObj = {};
|
|
Object.keys( obj ).forEach( ( key ) => {
|
|
const newKey = toSnakeCase( key );
|
|
newObj[ newKey ] = obj[ key ];
|
|
} );
|
|
return newObj;
|
|
};
|