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

// An exported class using classic prototype syntax.

function Class() {
}

Class.classMethod = function() {}
Class.prototype.instanceMethod = function() {}

module.exports = {
  Class
};