aboutsummaryrefslogtreecommitdiff
path: root/integration/snippets/unicode-identifiers.js
blob: 5b602f49b368b718504264e806ca57bc85f8c00d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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);
}