Files
Kmake/test/fixtures/apilinks/buffer.js

13 lines
169 B
JavaScript
Raw Permalink Normal View History

2026-05-26 23:36:42 -07:00
'use strict';
// Buffer instance methods are exported as 'buf'.
function Buffer() {
}
Buffer.prototype.instanceMethod = function() {}
module.exports = {
Buffer
};