Skip to content

Instantly share code, notes, and snippets.

@wulucxy
Created July 9, 2018 01:20
Show Gist options
  • Save wulucxy/a018910d0749aac69bc7a6ae51acaf7e to your computer and use it in GitHub Desktop.
Save wulucxy/a018910d0749aac69bc7a6ae51acaf7e to your computer and use it in GitHub Desktop.
String #snippet

String

compareStrings

对比字符串是否相等

const compareStrings = (a, b, ignoreCase) => {
  a = String(a)
  b = String(b)

  return ignoreCase ? a.toLocaleLowerCase() === b.toLocaleLowerCase() : a === b
}

Demo:

// 待添加
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment