summaryrefslogtreecommitdiff
path: root/misc/tools/gen-num-pairs.js
diff options
context:
space:
mode:
authorRasmus Andersson <rasmus@notion.se>2018-09-03 22:55:49 +0300
committerRasmus Andersson <rasmus@notion.se>2018-09-03 22:55:49 +0300
commitc833e252c925e8dd68108660710ca835d95daa6f (patch)
tree6b2e28264ed45efd7f054e453b622098d0d875b8 /misc/tools/gen-num-pairs.js
parent8c1a4c181ef12000179dfec541f1af87e9b03122 (diff)
downloadinter-c833e252c925e8dd68108660710ca835d95daa6f.tar.xz
Major overhaul, moving from UFO2 to Glyphs and UFO3, plus a brand new and much simpler fontbuild
Diffstat (limited to 'misc/tools/gen-num-pairs.js')
-rw-r--r--misc/tools/gen-num-pairs.js10
1 files changed, 10 insertions, 0 deletions
diff --git a/misc/tools/gen-num-pairs.js b/misc/tools/gen-num-pairs.js
new file mode 100644
index 000000000..9dbb92090
--- /dev/null
+++ b/misc/tools/gen-num-pairs.js
@@ -0,0 +1,10 @@
+
+const chars = '0 1 2 3 4 5 6 7 8 9 A B C D E F a b c d e f'.split(' ')
+
+for (let c1 of chars) {
+ let s = []
+ for (let c2 of chars) {
+ s.push(c1 + c2)
+ }
+ console.log(s.join(' '))
+}