-
Notifications
You must be signed in to change notification settings - Fork 142
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
BREAKING: Remove symbol from type #86
Conversation
This is something that should be reflected in the exported methods as well. |
I believe this would also resolve #9, if there's general support for it. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you for taking the time on this, @unional.
I'm just going to mass ping folks, before just going ahead and merging.
@gaearon @acdlite @yangmillstheory @timche @ anyone else!
@@ -7,7 +7,7 @@ import { | |||
export function isFSA(action) { | |||
return ( | |||
isPlainObject(action) && | |||
(isString(action.type) || isSymbol(action.type)) && |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is an import that needs to be removed as well.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks. I was editing on github directly. Missed the import. 😛
Looks good 👍 |
Fix #39