blob: 494bfec83a0453cdde985300e4d62376fa970c1f (
plain)
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
|
// Quick Take
import { strict as assert } from "assert";
import {
left,
right,
leftSeq,
rightSeq,
chompLeft,
chompRight,
leftStopAtNewLines,
rightStopAtNewLines,
} from "../dist/string-left-right.esm.js";
// get the closest non-whitespace character to the left of "d" (which itself
// is at string index 6)
const str = "abc def";
// | |
// 012345678
assert.equal(
`next non-whitespace character to the left of ${str[6]} (index 6) is ${
str[left(str, 6)]
} (index ${left(str, 6)})`,
"next non-whitespace character to the left of d (index 6) is c (index 2)"
);
|