Skip to content

Commit

Permalink
chore(util/debug): not for browser
Browse files Browse the repository at this point in the history
  • Loading branch information
bhsd-harry committed Jan 27, 2025
1 parent 9f5cbc4 commit 721822a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions util/debug.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,15 +85,15 @@ export const mixin = (target: Function, source: Function): void => {
Object.defineProperty(target, 'name', {value: source.name});
};

/* NOT FOR BROWSER */

/**
* 比较两个数
* @param a
* @param b
*/
export const compare = (a: number, b: number): number => a - b;

/* NOT FOR BROWSER */

/**
* 撤销最近一次Mutation
* @param e 事件
Expand Down

0 comments on commit 721822a

Please sign in to comment.