blob: 1c6cbaea20e3071fd46a13d24a44ba84d5623860 (
plain) (
blame)
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
|
import { expect, test } from "bun:test";
import { indexOfLine } from "bun";
test("indexOfLine", () => {
const source = `
const a = 1;
const b = 2;
😋const c = 3; // handles unicode
😋 Get Emoji — All Emojis to ✂️
const b = 2;
const c = 3;
`;
var i = 0;
var j = 0;
const buffer = Buffer.from(source);
var nonEmptyLineCount = 0;
while (i < buffer.length) {
const prev = j;
j = source.indexOf("\n", j);
i = indexOfLine(buffer, i);
const delta = Buffer.byteLength(source.slice(0, j), "utf8") - j;
console.log(source.slice(prev + 1, j));
if (i === -1) {
expect(j).toBe(-1);
expect(nonEmptyLineCount).toBe(6);
break;
}
expect(i++ - delta).toBe(j++);
nonEmptyLineCount++;
}
});
|