UNPKG

212 BJavaScriptView Raw
1const configstore = require('./configstore');
2const { storageKeys } = require('./get-github-client');
3
4module.exports = () => {
5 Object.values(storageKeys).forEach(key => {
6 configstore.delete(key);
7 });
8};