🚨 fix: resolve linting type error

This commit is contained in:
Rafi Arrafif
2026-01-30 21:21:43 +07:00
parent 11a607b4da
commit 5a43769f69
7 changed files with 9 additions and 7 deletions

View File

@ -50,7 +50,7 @@ try {
// Extract the key and the remainder after "="
const key = line.substring(0, delimiterIndex).trim();
let remainder = line.substring(delimiterIndex + 1);
const remainder = line.substring(delimiterIndex + 1);
// Attempt to separate value and inline comment (if any)
let value = remainder;