haiku-atelier-2024/web/vendor/htmlburger/carbon-fields/packages/metaboxes/utils/strip-compact-input-prefix.js
2024-12-22 19:47:20 +01:00

15 lines
404 B
JavaScript
Executable file

/**
* Removes the prefix used to compact the input of Carbon Fields.
*
* @param {string} str
* @return {string}
*/
export default function stripCompactInputPrefix( str ) {
const { compactInput, compactInputKey } = window.cf.config;
if ( ! compactInput || str.indexOf( compactInputKey ) !== 0 ) {
return str;
}
return str.replace( new RegExp( `^${ compactInputKey }\\[(.+?)\\]` ), '$1' );
}