1 2 3 4 5 6 7
export function getDataFromDataTransfer(dataTransfer, typesToTry, defaultValue) { const result = typesToTry.reduce((resultSoFar, typeToTry)=>resultSoFar || dataTransfer.getData(typeToTry) , ''); return result != null ? result : defaultValue; } //# sourceMappingURL=getDataFromDataTransfer.js.map