test.js 277 B

12345678910111213141516171819
  1. 'use strict';
  2. exports.info = function() {
  3. console.log('test api info');
  4. return true;
  5. };
  6. // class Test {
  7. // constructor() {
  8. // this.name = 'test';
  9. // }
  10. // info () {
  11. // console.log('test api info');
  12. // return true;
  13. // };
  14. // }
  15. // module.exports = Test;