fix(indent): ecma - class method indentation

This commit is contained in:
Munif Tanjim 2022-02-26 19:59:48 +06:00 committed by Stephan Seitz
parent 1eaf0150c2
commit 20168d8e20
3 changed files with 34 additions and 1 deletions

View file

@ -0,0 +1,20 @@
class IndentTest {
async isEqual(paramOne, paramTwo) {
if (paramOne === paramTwo) {
return true
}
return false
}
async isNotEqual(
paramOne,
paramTwo,
) {
if (paramOne !== paramTwo) {
return true
}
return false
}
}