Skip to content

Commit

Permalink
fix: run prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
reedrosenbluth committed Feb 25, 2021
1 parent e2d5810 commit 857e342
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion babel.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module.exports = function(api) {
module.exports = function (api) {
// TODO: Should cache on api.caller and api.env for faster build times.
api.cache.invalidate(() => true);

Expand Down
6 changes: 3 additions & 3 deletions packages/cli/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ global['window'] = {
origin: 'localhost',
},
localStorage: {
getItem: function(itemName: string) {
getItem: function (itemName: string) {
return localStorageRAM[itemName];
},
setItem: function(itemName: string, itemValue: any) {
setItem: function (itemName: string, itemValue: any) {
localStorageRAM[itemName] = itemValue;
},
removeItem: function(itemName: string) {
removeItem: function (itemName: string) {
delete localStorageRAM[itemName];
},
},
Expand Down

1 comment on commit 857e342

@vercel
Copy link

@vercel vercel bot commented on 857e342 Feb 25, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.