-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTestClient.js
50 lines (38 loc) · 879 Bytes
/
TestClient.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
var TestClient = function(){
this.interpreters = [];
this.user;
this.push = function(fn){
this.interpreters.push(fn);
};
this.pop = function(){
this.interpreters.pop();
};
this.text = null;
this.out = (text) => {
this.text = text;
};
this.flush = () => {
console.log(this.text);
};
this.clear = () => {
this.text = null;
};
this.set_prompt = function(prompt){
//Do nothing
};
this.set_mask = function(boolOrChar){
//Do nothing
};
this.get_prompt = function(){
return '';
};
this.exec = (command) => {
this.clear();
this.interpreters[this.interpreters.length - 1](command, this);
};
};
try {
module.exports = TestClient;
} catch (err){
//do nothing, assuming the file is being run in a browser
}