-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.js
42 lines (39 loc) · 1.97 KB
/
test.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
"use strict";
const vcmpad = require('./app.js');
console.log('left');
console.log("'" + vcmpad.left(10, 'test') + "'");
console.log("'" + vcmpad.left(10, 'test', '') + "'");
console.log("'" + vcmpad.left(10, 'test', 0) + "'");
console.log("'" + vcmpad.left(10, 'test', '0') + "'");
console.log("'" + vcmpad.left(10, 'test', 'left') + "'");
console.log("'" + vcmpad.left(10, 'test', 'left', false) + "'");
console.log("'" + vcmpad.left(10, 'test', ' ') + "'");
console.log("'" + vcmpad.left(10, 'test', null, true) + "'");
console.log("'" + vcmpad.left(10, 'test', false, true) + "'");
console.log("'" + vcmpad.left(10, 'test1234567890') + "'");
console.log("'" + vcmpad.left(10, 'test1234567', null, false) + "'");
console.log("'" + vcmpad.left(10, 'test1234567', null, true) + "'");
console.log("'" + vcmpad.left(10, null) + "'");
console.log("'" + vcmpad.left(10, 0) + "'");
console.log("'" + vcmpad.left(0) + "'");
console.log("'" + vcmpad.left(null, 'test') + "'");
console.log("'" + vcmpad.left() + "'");
console.log('\n');
console.log('right');
console.log("'" + vcmpad.right(10, 'test') + "'");
console.log("'" + vcmpad.right(10, 'test', '') + "'");
console.log("'" + vcmpad.right(10, 'test', 0) + "'");
console.log("'" + vcmpad.right(10, 'test', '0') + "'");
console.log("'" + vcmpad.right(10, 'test', 'right') + "'");
console.log("'" + vcmpad.right(10, 'test', 'right', false) + "'");
console.log("'" + vcmpad.right(10, 'test', ' ') + "'");
console.log("'" + vcmpad.right(10, 'test', null, true) + "'");
console.log("'" + vcmpad.right(10, 'test', false, true) + "'");
console.log("'" + vcmpad.right(10, 'test1234567890') + "'");
console.log("'" + vcmpad.right(10, 'test1234567', null, false) + "'");
console.log("'" + vcmpad.right(10, 'test1234567', null, true) + "'");
console.log("'" + vcmpad.right(10, null) + "'");
console.log("'" + vcmpad.right(10, 0) + "'");
console.log("'" + vcmpad.right(0) + "'");
console.log("'" + vcmpad.right(null, 'test') + "'");
console.log("'" + vcmpad.right() + "'");