Skip to content

Commit

Permalink
Define resetUserProperties for debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
ttsukagoshi committed Mar 1, 2021
1 parent 162ba25 commit 18cdaf8
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/_debug.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
/* global UP_KEY_CREATED_DRAFT_IDS, UP_KEY_PREV_CONFIG, UP_KEY_USER_CONFIG */
/* exported resetUserProperties */

function resetUserProperties() {
PropertiesService.getUserProperties()
.deleteProperty(UP_KEY_USER_CONFIG)
.deleteProperty(UP_KEY_PREV_CONFIG)
.deleteProperty(UP_KEY_CREATED_DRAFT_IDS);
}

0 comments on commit 18cdaf8

Please sign in to comment.