File: exporter.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 (11 lines) | stat: -rw-r--r-- 173 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
/* jshint esnext:true */

var a = 1;
var b = 2;

function incr() {
  var c = a++; // Capture `a++` to force us to use a temporary variable.
  b++;
}

export { a, b, incr };