* Added optionalExpression types to babylon and babel-types * OptionalChain transforms bug fix * Added OptionalExpressions to babel-generator. Fixed OptionalChain Bugs * Removed 'optionalChain' from newExpression and added test cases * Added test cases for optionalChain * Update index.js
9 lines
64 B
JavaScript
9 lines
64 B
JavaScript
func?.()
|
|
|
|
func?.(a, b)
|
|
|
|
a?.func?.()
|
|
|
|
a?.func?.(a, b)
|
|
|
|
a.func?.() |