Comparing version 1.2.1 to 1.2.2
{ | ||
"name": "esrap", | ||
"version": "1.2.1", | ||
"version": "1.2.2", | ||
"description": "Parse in reverse", | ||
@@ -5,0 +5,0 @@ "repository": { |
@@ -619,3 +619,5 @@ /** @type {import('./types').Newline} */ | ||
node.body.type === 'ObjectExpression' || | ||
(node.body.type === 'AssignmentExpression' && node.body.left.type === 'ObjectPattern') | ||
(node.body.type === 'AssignmentExpression' && node.body.left.type === 'ObjectPattern') || | ||
(node.body.type === 'LogicalExpression' && node.body.left.type === 'ObjectExpression') || | ||
(node.body.type === 'ConditionalExpression' && node.body.test.type === 'ObjectExpression') | ||
) { | ||
@@ -622,0 +624,0 @@ state.commands.push('('); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
38665
1233