(i:any)
| 15 | }; |
| 16 | |
| 17 | const getStyleId = (i:any) => { |
| 18 | let result = null; |
| 19 | for (const [mId, ids] of flatRunes) { |
| 20 | if (+i === +mId) { |
| 21 | result = +i; |
| 22 | break; |
| 23 | } |
| 24 | |
| 25 | if (ids.includes(+i)) { |
| 26 | result = +mId; |
| 27 | break; |
| 28 | } |
| 29 | } |
| 30 | return result; |
| 31 | }; |
| 32 | |
| 33 | const isDifferentStyleId = (a:any, b:any) => { |
| 34 | if (!a || !b) { |
no outgoing calls
no test coverage detected