| 1234567891011121314151617181920212223 |
- "use strict";
- const UIPlugin = require("../UIPlugin.js");
- class InvalidPluginWithoutName extends UIPlugin {
- constructor(uppy, opts) {
- super(uppy, opts);
- this.type = 'acquirer';
- this.name = this.constructor.name;
- }
- run(results) {
- this.uppy.log({
- class: this.constructor.name,
- method: 'run',
- results
- });
- return Promise.resolve('success');
- }
- }
- module.exports = InvalidPluginWithoutName;
|