-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathintro.js
32 lines (22 loc) · 858 Bytes
/
intro.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// Wrap everything in a function to avoid polluting the global namespace.
(function() {
let Intro = {}
TypeJig.WordSets.Intro = Intro
// pep weapon help rep
// pet wet het ret
// pip WIP hip rip
// pill will hill rill
Intro.LeftIndex = [ 'hip', 'rip' ]
Intro.LeftIndexAlt = Intro.LeftIndex.slice()
Intro.LeftIndexAlt.alternate = 'was'
Intro.LeftMiddle = [ 'pip', 'WIP' ]
Intro.LeftMiddleAlt = Intro.LeftMiddle.slice()
Intro.LeftMiddleAlt.alternate = 'is'
Intro.LeftIndexMiddle = ['pet', 'wet', 'het', 'ret']
Intro.LeftIndexMiddle.alternate = 'or'
Intro.LeftRingPinky = ['sip', 'tip', 'kip']
Intro.LeftRingPinkyAlt = Intro.LeftRingPinky.slice()
Intro.LeftRingPinkyAlt.alternate = 'was'
Intro.Left = ['sat', 'tat', 'cat', 'pat', 'watt', 'hat', 'rat']
Intro.Left.alternate = 'or'
})(); // Execute the code in the wrapper function.