Skip to content

Commit 611e130

Browse files
committed
refactor: remove more "var"
1 parent 2b42a0b commit 611e130

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/index.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -344,9 +344,9 @@ const RNFS = {
344344
contents: string,
345345
encodingOrOptions?: any
346346
): Promise<void> {
347-
var b64;
347+
let b64;
348348

349-
var options = {
349+
let options = {
350350
encoding: 'utf8',
351351
};
352352

@@ -377,9 +377,9 @@ const RNFS = {
377377
position?: number,
378378
encodingOrOptions?: any
379379
): Promise<void> {
380-
var b64;
380+
let b64;
381381

382-
var options = {
382+
let options = {
383383
encoding: 'utf8',
384384
};
385385

0 commit comments

Comments
 (0)