File: main.js

package info (click to toggle)
node-browserify 17.0.0%2Bds-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, trixie
  • size: 2,400 kB
  • sloc: javascript: 5,642; makefile: 27; sh: 10
file content (10 lines) | stat: -rw-r--r-- 182 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
try {
  var Backbone = require('backbone');
  throw new Error('module included');
} catch (e) {
  if (e.message === 'module included') {
    throw e;
  } else {
    t.ok(true);
  }
}