aboutsummaryrefslogtreecommitdiff
path: root/tests/space_search.js
blob: fffdcc7104d072d22326a364a3bcd76d27b102fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Tests space.search

const space = require('../space')

let text = new space.Space();
text.adhoc('\
\n\
 jarvis\n\
 jarvis\n\
 jarvis \
');

let line = new space.Space();
line.adhoc('jarvis');

console.log(text.search(line))