mirror of
https://git.proxmox.com/git/pve-eslint
synced 2025-08-24 11:23:27 +00:00

includes a (minimal) working wrapper Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
8 lines
120 B
JavaScript
8 lines
120 B
JavaScript
// function is necessary to avoid any other errors
|
|
function foo(bar) {
|
|
"use strict";
|
|
return bar;
|
|
}
|
|
|
|
foo('bar');
|