| Total Complexity | 3 | 
| Complexity/F | 3 | 
| Lines of Code | 1 | 
| Function Count | 1 | 
| Duplicated Lines | 1 | 
| Ratio | 100 % | 
| Changes | 0 | ||
Duplicate code is one of the most pungent code smells. A rule that is often used is to re-structure code once it is duplicated in three or more places.
Common duplication problems, and corresponding solutions are:
| 1 | import{d as r,F as c}from"./q-5LSN8IXO.js";import{k as u,u as i,c as d,j as l,N as f,C as m,d as h}from"./q-grzRItSl.js";const C=()=>{const s=c();u();const o=i("nonce"),n=d(r);if(n.value&&n.value.length>0){const a=n.value.length;let t=null;for(let e=a-1;e>=0;e--)n.value[e].default&&(t=l(n.value[e].default,{children:t},1,"zl_0"));return l(h,{children:[t,m("script",{dangerouslySetInnerHTML:s},{nonce:o},null,3,null)]},1,"zl_1")}return f};export{C as s_e0ssiDXoeAM}; | 
            ||
| 2 | 
This checks looks for references to variables that have not been declared. This is most likey a typographical error or a variable has been renamed.
To learn more about declaring variables in Javascript, see the MDN.