remote-static.js 134 B

123456789101112131415
  1. class Foo {
  2. static foo () {
  3. return 3;
  4. }
  5. baz () {
  6. return 123;
  7. }
  8. }
  9. Foo.bar = 'baz';
  10. module.exports = {
  11. Foo: Foo
  12. };