Skip to content

Commit c67cbf1

Browse files
authored
Update lib_sett.gs
1 parent 0b478d3 commit c67cbf1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lib_sett.gs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ function getSetting_(property) {
2020
function setSetting_(property, value) {
2121
try {
2222
const properties = PropertiesService.getScriptProperties();
23-
var settings = JSON.parse(properties.getProperty("SETTINGS")) || {};
24-
var upSettings = {
23+
const settings = JSON.parse(properties.getProperty("SETTINGS")) || {};
24+
const upSettings = {
2525
...settings,
2626
[property]: value
2727
}

0 commit comments

Comments
 (0)