feat: refactoring project

This commit is contained in:
Carlos
2024-11-23 14:56:07 -05:00
parent f0c2a50c18
commit 1c6db5818d
2351 changed files with 39323 additions and 60326 deletions

12
node_modules/terser/lib/output.js generated vendored
View File

@@ -1792,9 +1792,9 @@ function OutputStream(options) {
output.space();
}
self.module_name.print(output);
if (self.assert_clause) {
output.print("assert");
self.assert_clause.print(output);
if (self.attributes) {
output.print("with");
self.attributes.print(output);
}
output.semicolon();
});
@@ -1888,9 +1888,9 @@ function OutputStream(options) {
output.space();
self.module_name.print(output);
}
if (self.assert_clause) {
output.print("assert");
self.assert_clause.print(output);
if (self.attributes) {
output.print("with");
self.attributes.print(output);
}
if (self.exported_value
&& !(self.exported_value instanceof AST_Defun ||