UNPKG

wix-storybook-utils

Version:

Utilities for automated component documentation within Storybook

8 lines (6 loc) 194 B
const regex = /^.*?\((.+?)\)$/i; const removeHOC = (string = '') => { const [, componentName = ''] = string.match(regex) || []; return componentName || string; }; export default removeHOC;