File: main.js

package info (click to toggle)
node-rollup-plugin-commonjs 25.0.4%2Bds1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 4,304 kB
  • sloc: javascript: 6,824; makefile: 6
file content (13 lines) | stat: -rwxr-xr-x 273 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
/*
 * This comment could be really important and should not be removed
 */

/* This comment does not matter */
const noSideEffect = null;

modifyExports(exports);

function modifyExports(exported) {
  // eslint-disable-next-line no-param-reassign
  exported.foo = 'bar';
}