babel-plugin-const-enum icon indicating copy to clipboard operation
babel-plugin-const-enum copied to clipboard

Support computed string enum members

Open dosentmatter opened this issue 3 years ago • 0 comments

Should allow string operations such as + (concatenation) but no interpolation. Concatenation is the only operator I am aware of.

const enum MyEnum = {
  A  = 'a' + 'a',
  B = `b` + `b`,
  C = "b" + "b",
}

dosentmatter avatar Nov 01 '21 05:11 dosentmatter