Utils

coderljw 2024-10-13 DAPP
  • 区块链
  • DAPP
  • Utils
小于 1 分钟

# 1. compareToken

  • 判断代币是否足够。
export const compareToken = (a: string, b: string) => {
  if (a === b) return true
  if (a.length > b.length) return true
  if (a.length < b.length) return false
  for (let i = 0; i < a.length; i++) {
    if (a[i] > b[i]) return true
    if (a[i] < b[i]) return false
  }
}
1
2
3
4
5
6
7
8
9
以父之名
周杰伦.mp3