Welcome to mirror list, hosted at ThFree Co, Russian Federation.

utils.js « markdown « components « vue_shared « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0227d5a0fbc7f27b2650907d6472e9a9b3bcccb8 (plain)
1
2
3
4
5
6
7
let i = 0;

export const counter = () => {
  const n = i;
  i += 1;
  return n;
};