UNPKG

react-dnd-html5-backend

Version:

HTML5 backend for React DnD

5 lines (4 loc) 253 B
export function getDataFromDataTransfer(dataTransfer, typesToTry, defaultValue) { const result = typesToTry.reduce((resultSoFar, typeToTry) => resultSoFar || dataTransfer.getData(typeToTry), ''); return result != null ? result : defaultValue; }