-
Notifications
You must be signed in to change notification settings - Fork 2
On off rework #37
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
base: master
Are you sure you want to change the base?
On off rework #37
Conversation
@@ -29,6 +29,7 @@ | |||
"devDependencies": { | |||
"eslint-config-firstandthird": "3.2.0", | |||
"eslint-plugin-import": "^2.1.0", | |||
"map-polyfill": "0.0.1", |
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.
what is this for?
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.
So phantom is happy
@@ -0,0 +1,61 @@ | |||
const storage = new Map(); |
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.
what does this turn into after running through babel? A little worried that this bloats the code
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.
Nothing strange, Map is well supported.
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.
if we have to support anything older than IE 11, this will error, right?
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.
It will yes, but that'd the least of our problems, lots of things are being used with no support below IE11. Attrobj being the first one which is deep into Domodule. Can use a regular object if you'd still like to strike for IE10 support but this is more performant for the use we are doing.
No description provided.