(properties)
| 1052 | } |
| 1053 | |
| 1054 | checkLayoutTriggers(properties) { |
| 1055 | const layoutProperties = ['width', 'height', 'padding', 'margin', 'position', 'top', 'left', 'right', 'bottom']; |
| 1056 | return properties.some(p => layoutProperties.includes(p)); |
| 1057 | } |
| 1058 | |
| 1059 | analyzeMemoryImpact(properties) { |
| 1060 | let impact = 'low'; |
no outgoing calls
no test coverage detected