(direct, properties)
| 115 | * @returns {*} |
| 116 | */ |
| 117 | const mapDirectToProperty = function(direct, properties) { |
| 118 | |
| 119 | if (direct === true) return properties.elem |
| 120 | if (direct instanceof HTMLElement === true) return properties.direct |
| 121 | |
| 122 | return properties.global |
| 123 | |
| 124 | } |
| 125 | |
| 126 | /** |
| 127 | * Converts a relative value to an absolute value. |