mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 01:21:07 +08:00
feat: refactor
use includes to check for existence
This commit is contained in:
parent
e0932256fb
commit
a3be955e37
@ -42,8 +42,7 @@ export default function renderStringified({
|
||||
const rootName = oneTag.boundAs || guessRootName(oneTag);
|
||||
const { content } = oneTag || {};
|
||||
const code = content ? content.trim() : oneTag || '';
|
||||
const compiled =
|
||||
code.indexOf(alreadyCompiledMarker) !== -1 ? code : compileText(code, rootName);
|
||||
const compiled = code.includes(alreadyCompiledMarker) ? code : compileText(code, rootName);
|
||||
unregister(rootName);
|
||||
eval(getRidOfRiotNoise(`${compiled}`)); // eslint-disable-line no-eval
|
||||
});
|
||||
|
Loading…
x
Reference in New Issue
Block a user