File: mod.js

package info (click to toggle)
node-es6-module-transpiler 0.10.0-1~bpo8%2B1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-backports
  • size: 684 kB
  • sloc: makefile: 2; sh: 2
file content (8 lines) | stat: -rw-r--r-- 89 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
var a = 1;

assert.equal(a, 1);
assert.equal(getA(), 1);

function getA() {
  return a;
}