blob: cca9e2f10ab3dcf812e8ada05c42039daca5260e (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/* eslint-disable no-unused-vars */
"use strict";
function counterExternalFile() {
console.count("console.count() testcounter");
}
function externalCountersWithoutLabel() {
console.count();
console.count();
}
|