v2.1.0
Features
void 0
toundefined
- undo yoda conditions:
if (1 == x)
->if (x == 1)
Bug Fixes
- computed property regression where a single char and
_
wasn't detected:obj["x"]
->obj.x
- retain emojis in strings:
"\u270F\uFE0F"
->"✏️"
void 0
to undefined
if (1 == x)
-> if (x == 1)
_
wasn't detected: obj["x"]
-> obj.x
"\u270F\uFE0F"
-> "✏️"