(node, location)
| 60 | } |
| 61 | |
| 62 | function getPaddingAndBorder(node, location) { |
| 63 | return getPadding(node, location) + getBorder(node, location); |
| 64 | } |
| 65 | |
| 66 | function getMarginAxis(node, axis) { |
| 67 | return getMargin(node, leading[axis]) + getMargin(node, trailing[axis]); |
no test coverage detected
searching dependent graphs…