• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1'use strict';
2
3// Support `exports` as an alternative to `module.exports`.
4
5function Buffer() {};
6
7exports.Buffer = Buffer;
8exports.fn1 = function fn1() {};
9
10var fn2 = exports.fn2 = function() {};
11
12function fn3() {};
13exports.fn3 = fn3;
14