Skip to content

Commit

Permalink
Update method names to match file name
Browse files Browse the repository at this point in the history
  • Loading branch information
tgolen committed Aug 18, 2023
1 parent 5b94b18 commit 825cf66
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import * as MemoryOnlyKeys from '../MemoryOnlyKeys';

const exposeGlobalMethods = () => {
const exposeGlobalMemoryOnlyKeysMethods = () => {
window.enableMemoryOnlyKeys = () => {
MemoryOnlyKeys.enable();
};
Expand All @@ -9,4 +9,4 @@ const exposeGlobalMethods = () => {
};
};

export default exposeGlobalMethods;
export default exposeGlobalMemoryOnlyKeysMethods;
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* This is a no-op because the global methods will only work for web and desktop
*/
const exposeGlobalMethods = () => {};
const exposeGlobalMemoryOnlyKeysMethods = () => {};

export default exposeGlobalMethods;
export default exposeGlobalMemoryOnlyKeysMethods;

0 comments on commit 825cf66

Please sign in to comment.