1
useVim
56d

const PROVIDER_TYPES = Object.freeze({
FACEBOOK: "facebook",
GOOGLE: "google",
GITHUB: "github",
X: "x",
});

Comments
  • 1
    🤢
  • 0
    Thats what i call bloat. Why is it even there? A mapping is static unless changes at runtime. It's even definded as static. Why?
  • 3
    Should be:
    TWITTER: "x"

    Seems more constant.
Add Comment