(options)
| 43 | export { stdlib, optional, inputFailure }; |
| 44 | |
| 45 | export const donkey = (options) => |
| 46 | import(/* webpackIgnore: true */ "./plugins/donkey.js").then((module) => |
| 47 | module.default(options), |
| 48 | ); |
| 49 | |
| 50 | // generic helper to disambiguate between custom element and script |
| 51 | const isScript = ({ tagName }) => tagName === "SCRIPT"; |