summaryrefslogtreecommitdiff
path: root/frontend-old/node_modules/@protobufjs/codegen/tests
diff options
context:
space:
mode:
authoraltaf-creator <dev@altafcreator.com>2025-11-16 19:08:29 +0800
committeraltaf-creator <dev@altafcreator.com>2025-11-16 19:08:29 +0800
commit434aa8343fdcbb4d5002f934979913c099489bee (patch)
tree55bab4ec5a6151be57797d34f61faf5ea744471b /frontend-old/node_modules/@protobufjs/codegen/tests
parent893c388d4e99442a36005e5971a87730623f946e (diff)
sdk, del
Diffstat (limited to 'frontend-old/node_modules/@protobufjs/codegen/tests')
-rw-r--r--frontend-old/node_modules/@protobufjs/codegen/tests/index.js13
1 files changed, 0 insertions, 13 deletions
diff --git a/frontend-old/node_modules/@protobufjs/codegen/tests/index.js b/frontend-old/node_modules/@protobufjs/codegen/tests/index.js
deleted file mode 100644
index f3a3db1..0000000
--- a/frontend-old/node_modules/@protobufjs/codegen/tests/index.js
+++ /dev/null
@@ -1,13 +0,0 @@
-var codegen = require("..");
-
-// new require("benchmark").Suite().add("add", function() {
-
-var add = codegen(["a", "b"], "add")
- ("// awesome comment")
- ("return a + b - c + %d", 1)
- ({ c: 1 });
-
-if (add(1, 2) !== 3)
- throw Error("failed");
-
-// }).on("cycle", function(event) { process.stdout.write(String(event.target) + "\n"); }).run();