mirror of
https://github.com/jlengrand/open-wc.git
synced 2026-03-10 08:31:19 +00:00
11 lines
205 B
JavaScript
11 lines
205 B
JavaScript
// @ts-nocheck
|
|
/* eslint-disable */
|
|
const myFunction = function myFunction() {
|
|
if (true) {
|
|
console.log('polyfill b: this code should not be minified');
|
|
}
|
|
return 5;
|
|
};
|
|
|
|
console.log(myFunction());
|