mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-17 18:03:06 +09:00
11 lines
217 B
JavaScript
11 lines
217 B
JavaScript
|
|
/* eslint-disable no-unused-vars */
|
||
|
|
|
||
|
|
"use strict";
|
||
|
|
|
||
|
|
function counterExternalFile() {
|
||
|
|
console.count("console.count() testcounter");
|
||
|
|
}
|
||
|
|
function externalCountersWithoutLabel() {
|
||
|
|
console.count();
|
||
|
|
console.count();
|
||
|
|
}
|