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

// Support `exports` as an alternative to `module.exports`.

function Buffer() {};

exports.Buffer = Buffer;
exports.fn1 = function fn1() {};

var fn2 = exports.fn2 = function() {};

function fn3() {};
exports.fn3 = fn3;