-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontractionsMap.js
More file actions
122 lines (122 loc) · 2.97 KB
/
contractionsMap.js
File metadata and controls
122 lines (122 loc) · 2.97 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
export const contractionsMap = {
"aren't": "are not",
"arent": "are not",
"can't": "cannot",
"cant": "cannot", // misspelled
"couldn't": "could not",
"couldnt": "could not",
"didn't": "did not",
"didnt": "did not",
"doesn't": "does not",
"doesnt": "does not",
"don't": "do not",
"dont": "do not",
"hadn't": "had not",
"hadnt": "had not",
"hasn't": "has not",
"hasnt": "has not",
"haven't": "have not",
"havent": "have not",
"he'd": "he would",
"he'll": "he will",
"he's": "he is",
"hed": "he would",
"hes": "he is",
"i'd": "I would",
"i'll": "I will",
"i'm": "I am",
"i've": "I have",
"id": "I would",
"ill": "I will",
"im": "I am",
"isn't": "is not",
"isnt": "is not",
"it'd": "it would",
"it'll": "it will",
"it's": "it is",
"itd": "it would",
"itll": "it will",
"ive": "I have",
"mustn't": "must not",
"mustnt": "must not",
"she'd": "she would",
"she'll": "she will",
"she's": "she is",
"shed": "she would",
"shes": "she is",
"shouldn't": "should not",
"shouldnt": "should not",
"they'd": "they would",
"they'll": "they will",
"they're": "they are",
"they've": "they have",
"theyd": "they would",
"theyll": "they will",
"theyre": "they are",
"theyve": "they have",
"wasn't": "was not",
"wasnt": "was not",
"we'd": "we would",
"we'll": "we will",
"we're": "we are",
"we've": "we have",
"wed": "we would",
"were": "we are",
"weren't": "were not",
"werent": "were not",
"weve": "we have",
"won't": "will not",
"wont": "will not", // misspelled
"wouldn't": "would not",
"wouldnt": "would not",
"you'd": "you would",
"you'll": "you will",
"you're": "you are",
"you've": "you have",
"youd": "you would",
"youll": "you will",
"youre": "you are",
"youve": "you have",
// "hell": "he will",
// "ill": "I will",
// "shell": "she will",
// "well": "we will",
"can't": "can not",
"couldn't": "could not",
"didn't": "did not",
"doesn't": "does not",
"don't": "do not",
"hadn't": "had not",
"hasn't": "has not",
"haven't": "have not",
"he'll": "he will",
"i'd": "I would",
"i'll": "I will",
"i'm": "I am",
"i've": "I have",
"isn't": "is not",
"let's": "let us",
"mightn't": "might not",
"mustn't": "must not",
"shan't": "shall not",
"there's": "there is",
"they'd": "they would",
"they'll": "they will",
"they're": "they are",
"they've": "they have",
"we'd": "we would",
"we're": "we are",
"we've": "we have",
"weren't": "were not",
"what'll": "what will",
"what're": "what are",
"what's": "what is",
"what've": "what have",
"where's": "where is",
"who'd": "who would",
"who'll": "who will",
"who're": "who are",
"who've": "who have",
"won't": "will not",
"yall": "you all"
};