Skip to content

Commit 4c46b42

Browse files
committed
Replace const for var.
1 parent 6621c90 commit 4c46b42

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

mail.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ const EMPTYARRAY = [];
3838
const REG_WINLINE = /\r\n/g;
3939
const REG_NEWLINE = /\n/g;
4040

41-
const INDEXSENDER = 0;
42-
const INDEXATTACHMENT = 0;
41+
var INDEXSENDER = 0;
42+
var INDEXATTACHMENT = 0;
4343

4444
if (!global.framework_utils)
4545
global.framework_utils = require('./utils');

0 commit comments

Comments
 (0)