01_minimal.js 182 Bytes EditWeb IDE 1 2 3 4 5 6 7 8 9 10 11 12 13 'use strict' module.exports = function () { class B {} class A { static constitute () { return [ B ] } constructor (b) { this.b = b } } return { A, B } }