(arg)
| 2054 | * otherwise returns the argument. Used for Preact compatibility. |
| 2055 | */ |
| 2056 | var unwrapArray = function unwrapArray(arg) { |
| 2057 | return Array.isArray(arg) ? arg[0] : arg; |
| 2058 | }; |
| 2059 | /** |
| 2060 | * Takes a maybe-undefined function and arbitrary args and invokes the function |
| 2061 | * only if it is defined. |
no outgoing calls
no test coverage detected
searching dependent graphs…