1'use strict'; 2 3// Buffer instance methods are exported as 'buf'. 4 5function Buffer() { 6} 7 8Buffer.prototype.instanceMethod = function() {} 9 10module.exports = { 11 Buffer 12}; 13