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

// Buffer instance methods are exported as 'buf'.

function Buffer() {
}

Buffer.prototype.instanceMethod = function() {}

module.exports = {
  Buffer
};