56 lines
1.7 KiB
JavaScript
56 lines
1.7 KiB
JavaScript
export function replaceAccents(str) {
|
|
// Verifies if the String has accents and replace them
|
|
if (str.search(/[\xC0-\xFF]/g) > -1) {
|
|
str = str
|
|
.replace(/[\xC0-\xC5]/g, "A")
|
|
.replace(/[\xC6]/g, "AE")
|
|
.replace(/[\xC7]/g, "C")
|
|
.replace(/[\xC8-\xCB]/g, "E")
|
|
.replace(/[\xCC-\xCF]/g, "I")
|
|
.replace(/[\xD0]/g, "D")
|
|
.replace(/[\xD1]/g, "N")
|
|
.replace(/[\xD2-\xD6\xD8]/g, "O")
|
|
.replace(/[\xD9-\xDC]/g, "U")
|
|
.replace(/[\xDD]/g, "Y")
|
|
.replace(/[\xDE]/g, "P")
|
|
.replace(/[\xE0-\xE5]/g, "a")
|
|
.replace(/[\xE6]/g, "ae")
|
|
.replace(/[\xE7]/g, "c")
|
|
.replace(/[\xE8-\xEB]/g, "e")
|
|
.replace(/[\xEC-\xEF]/g, "i")
|
|
.replace(/[\xF1]/g, "n")
|
|
.replace(/[\xF2-\xF6\xF8]/g, "o")
|
|
.replace(/[\xF9-\xFC]/g, "u")
|
|
.replace(/[\xFE]/g, "p")
|
|
.replace(/[\xFD\xFF]/g, "y");
|
|
}
|
|
return str;
|
|
}
|
|
|
|
export function formatBytes(a, b = 2) {
|
|
if (0 === a || !a || isNaN(a)) return "0 Bytes";
|
|
const c = 0 > b ? 0 : b,
|
|
d = Math.floor(Math.log(a) / Math.log(1024));
|
|
|
|
const parsedFloat = parseFloat((a / Math.pow(1024, d)).toFixed(c))
|
|
if (isNaN(parsedFloat)) {
|
|
return "0 Bytes";
|
|
}
|
|
return (
|
|
parsedFloat +
|
|
" " +
|
|
["Bytes", "KB", "MB", "GB", "TB", "PB", "EB", "ZB", "YB"][d]
|
|
);
|
|
}
|
|
|
|
|
|
export async function fetchImageFromUri(uri) {
|
|
const response = await fetch(uri);
|
|
const blob = await response.blob();
|
|
return blob;
|
|
};
|
|
export async function fetchArrayBufferFromUri(uri) {
|
|
const response = await fetch(uri);
|
|
const arrayBuffer = await response.arrayBuffer();
|
|
return arrayBuffer;
|
|
}; |