mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-18 18:33:07 +09:00
19 lines
433 B
HTML
19 lines
433 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Simple webconsole test page</title>
|
|
</head>
|
|
<body>
|
|
<p>console.table() test page</p>
|
|
<script>
|
|
function doConsoleTable(data, constrainedHeaders = null) {
|
|
if (constrainedHeaders) {
|
|
console.table(data, constrainedHeaders);
|
|
} else {
|
|
console.table(data);
|
|
}
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|