* Check if a value is a stateful transform object (has a transform method). * @param {unknown} value * @returns {boolean}
(value)
| 225 | * @returns {boolean} |
| 226 | */ |
| 227 | function isTransformObject(value) { |
| 228 | return typeof value?.transform === 'function'; |
| 229 | } |
| 230 | |
| 231 | /** |
| 232 | * Check if a value is a valid transform (function or transform object). |
no outgoing calls
no test coverage detected