mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 15:11:10 +08:00
Verify that name is a string in addons/actions
It appears that it’s possible that `name` can be passed in as an object. In order for the `replace` method to work, name must be a string. This pull request adds a condition to the `fnName` constant that verifies the value of `name` is a string.
This commit is contained in:
parent
acfddc052b
commit
b3d79a5eda
@ -30,7 +30,7 @@ export function action(name) {
|
||||
// the same.
|
||||
//
|
||||
// Ref: https://bocoup.com/weblog/whats-in-a-function-name
|
||||
const fnName = name ? name.replace(/\W+/g, '_') : 'action';
|
||||
const fnName = name && typeof name === 'string' ? name.replace(/\W+/g, '_') : 'action';
|
||||
// eslint-disable-next-line no-eval
|
||||
const named = eval(`(function ${fnName}() { return handler.apply(this, arguments) })`);
|
||||
return named;
|
||||
|
Loading…
x
Reference in New Issue
Block a user