From 729d445b6885f69dd2c6355f38707bd42851c791 Mon Sep 17 00:00:00 2001
From: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
Date: Wed, 22 Jun 2022 23:21:48 -0700
Subject: change the directory structure
---
test/snippets/unicode-identifiers.js | 15 +++++++++++++++
1 file changed, 15 insertions(+)
create mode 100644 test/snippets/unicode-identifiers.js
(limited to 'test/snippets/unicode-identifiers.js')
diff --git a/test/snippets/unicode-identifiers.js b/test/snippets/unicode-identifiers.js
new file mode 100644
index 000000000..5b602f49b
--- /dev/null
+++ b/test/snippets/unicode-identifiers.js
@@ -0,0 +1,15 @@
+var ε = 1e-6,
+ ε2 = ε * ε,
+ π = Math.PI,
+ τ = 2 * π,
+ τε = τ - ε,
+ halfπ = π / 2,
+ d3_radians = π / 180,
+ d3_degrees = 180 / π;
+
+export { d3_radians };
+
+export function test() {
+ console.assert(ε === 1e-6);
+ return testDone(import.meta.url);
+}
--
cgit v1.2.3
'>1.3.0
Unnamed repository; edit this file 'description' to name the repository. | |