Update fnTools.ts
This commit is contained in:
parent
e5f56a052d
commit
e28171eefc
@ -213,3 +213,15 @@ export function arraySwapIndex(firstIndex: number, secondIndex: number, list: Ar
|
|||||||
tempList[secondIndex] = tmpFirstPos;
|
tempList[secondIndex] = tmpFirstPos;
|
||||||
return tempList;
|
return tempList;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns a File in text.
|
||||||
|
* @param {File} file
|
||||||
|
* @return {Promise<string>}
|
||||||
|
*/
|
||||||
|
export async function encodeFileToText(file: File): Promise<string> {
|
||||||
|
return file.text().then((text) => {
|
||||||
|
return text;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user