Skip to content

Commit

Permalink
fix: change process to resolve global conflict (#139)
Browse files Browse the repository at this point in the history
  • Loading branch information
vanishcode authored Jun 29, 2023
1 parent eb5aed0 commit 05c6ede
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/utils/process.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { gatherActiveObservationsAtDepth } from '../algorithms/gatherActiveObser
* Runs through the algorithms and
* broadcasts and changes that are returned.
*/
const process = (): boolean => {
const processAlgorithm = (): boolean => {
let depth = 0;
gatherActiveObservationsAtDepth(depth);
while (hasActiveObservations()) {
Expand All @@ -21,4 +21,4 @@ const process = (): boolean => {
return depth > 0;
}

export { process };
export { processAlgorithm as process };

0 comments on commit 05c6ede

Please sign in to comment.