-
-
Notifications
You must be signed in to change notification settings - Fork 318
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
node.types in conflict with mime.types #51
Comments
cc node.types contributers: @avoidwork @creationix @ednapiranha @francois2metz @jacobrask @louisremi @mab-netdev @mjrusso @niftylettuce @TooTallNate |
Ok for me. |
Works for me. |
No argument here. |
Can this be closed? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
shows several extensions where
node.types
redefines a type defined inmime.types
. Specifically:Are there any objections to removing the definitions above from
node.types
? (Speak now or hold your peace!) Removing the node type has two impacts:mime.lookup(_extension_)
will return the type defined bymime.types
rather thannode.types
. E.g.mime.lookup('rtf') would be
application/rtf`mime.extension(_node_type_)
will returnundefined
. E.g.mime.extension('text/rtf')
would beundefined
The text was updated successfully, but these errors were encountered: