File: wrongConstModule.js

package info (click to toggle)
node-rewire 6.0.0-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 392 kB
  • sloc: javascript: 1,386; makefile: 2
file content (4 lines) | stat: -rw-r--r-- 61 bytes parent folder | download
1
2
3
4
// Assigning to a const should fail
const a = "a";

a = "b";