Skip to content

Commit eb13a86

Browse files
Format
1 parent d59b28a commit eb13a86

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

packages/firestore/src/index/ordered_code_writer.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
*/
1717
import { debugAssert } from '../util/assert';
1818

19-
2019
/** These constants are taken from the backend. */
2120
const MIN_SURROGATE = '\uD800';
2221
const MAX_SURROGATE = '\uDBFF';

packages/firestore/test/unit/index/ordered_code_writer.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ describe('Ordered Code Writer', () => {
139139
verifyOrdering(STRING_TEST_CASES);
140140
});
141141

142-
function verifyEncoding(testCases: Array<ValueTestCase<unknown>>) : void {
142+
function verifyEncoding(testCases: Array<ValueTestCase<unknown>>): void {
143143
for (let i = 0; i < testCases.length; ++i) {
144144
const bytes = getBytes(testCases[i].val);
145145
expect(bytes.asc).to.deep.equal(
@@ -153,7 +153,7 @@ describe('Ordered Code Writer', () => {
153153
}
154154
}
155155

156-
function verifyOrdering(testCases: Array<ValueTestCase<unknown>>) : void {
156+
function verifyOrdering(testCases: Array<ValueTestCase<unknown>>): void {
157157
for (let i = 0; i < testCases.length; ++i) {
158158
for (let j = i; j < testCases.length; ++j) {
159159
const left = testCases[i].val;

0 commit comments

Comments
 (0)