UNPKG

@atlaskit/editor-plugin-image-upload

Version:

Image upload plugin for @atlaskit/editor-core

9 lines 278 B
// Typeguard Function export const isDragEvent = event => 'dataTransfer' in event; export function isDroppedFile(rawEvent) { const e = rawEvent; if (!e.dataTransfer) { return false; } return Array.prototype.slice.call(e.dataTransfer.types).indexOf('Files') !== -1; }