Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ClassA.js « testLib - github.com/twbs/rewire.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8aec27992c1ef960530fdd09d146a85dbef54cba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
class A {
    get prop1() {
        return "A"
    }
    get prop2() {
        return "something"
    }

    method2() { return "testA"; }
}

module.exports = A;