mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-15 17:03:07 +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();
|
|
}
|