DigitalConsumer.ISS/src/helpers/text-helper.js
Bill Richardson f05ff0ddf6 updates to bailout page
use tpa flag
sub header router link
2023-08-15 11:08:23 -04:00

8 lines
231 B
JavaScript

/**
* Returns string with inline style tag stripped out
* @returns string
*/
export function stripRteStyle(stringWithStyleTag) {
const regexExp = /[\s*]style="(.*?)"/g;
return stringWithStyleTag.replace(regexExp, '');
}