summaryrefslogtreecommitdiff
path: root/test/fixtures/apilinks/class.js
blob: 7db5c008e623f139a82c64d5224e80aa4892d2f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
'use strict';

// An exported class using ES2015 class syntax.

class Class {
  constructor() {};
  method() {};
}

module.exports = {
  Class
};