-
Notifications
You must be signed in to change notification settings - Fork 3
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
Support IE < 9 #3
Comments
Yeah. I'm sorry about this, I really should have mentioned it at least in the readme.
Long story short: I was aware of this when writing zhain. Also, my current project didn't/doesn't need to support IE < 9. I thought long and hard about valid, working synonym, and since I couldn't find a word concise and relevant enough, I gave up and blatantly decided to let legacy-IE-people suffer. Sorry about that, it was my laziness. Suggestions for an alias are welcome. Here's what I've thought of: Not really happy about any of them. Oh, and there's of course also the option to forget about the
But I feel it might scare people ;)
How important is this for you? |
The parens-only syntax seems pretty sweet. Any non-feelings based reason for not using it? Just my two cents |
It wouldn't fit CoffeeScript very well, I think: zhain()
(-> foo)
(->
bar
quux)
.end() vs zhain()
.do ->
foo
.do ->
bar
quux
.end() The latter is much more idiomatic.
One unrealistic option would be to change all uses of |
I'm not convinced. If I don't get a djuizzy |
do
is an invalid identifier in IE < 9:foo["do"]
does work.The text was updated successfully, but these errors were encountered: