This repository was archived by the owner on Jan 19, 2019. It is now read-only.
This repository was archived by the owner on Jan 19, 2019. It is now read-only.
Leading underscore not trimmed in object keys #328
Closed
Description
Forwarding from prettier/prettier#2143.
Input:
obj = {
'__': 42
}
Output:
obj = {
'___': 42
}
Looks the same as #296