refactor: convert function expressions to declarations (#4926)
This commit is contained in:
committed by
GitHub
parent
c0236536dd
commit
141a2eba56
@ -14,11 +14,10 @@ import {
|
||||
} from 'netlify-cms-lib-util';
|
||||
import AuthenticationPage from './AuthenticationPage';
|
||||
|
||||
const serializeAsset = async (assetProxy: AssetProxy) => {
|
||||
async function serializeAsset(assetProxy: AssetProxy) {
|
||||
const base64content = await assetProxy.toBase64!();
|
||||
|
||||
return { path: assetProxy.path, content: base64content, encoding: 'base64' };
|
||||
};
|
||||
}
|
||||
|
||||
type MediaFile = {
|
||||
id: string;
|
||||
@ -28,7 +27,7 @@ type MediaFile = {
|
||||
path: string;
|
||||
};
|
||||
|
||||
const deserializeMediaFile = ({ id, content, encoding, path, name }: MediaFile) => {
|
||||
function deserializeMediaFile({ id, content, encoding, path, name }: MediaFile) {
|
||||
let byteArray = new Uint8Array(0);
|
||||
if (encoding !== 'base64') {
|
||||
console.error(`Unsupported encoding '${encoding}' for file '${path}'`);
|
||||
@ -43,7 +42,7 @@ const deserializeMediaFile = ({ id, content, encoding, path, name }: MediaFile)
|
||||
const file = blobToFileObj(name, blob);
|
||||
const url = URL.createObjectURL(file);
|
||||
return { id, name, path, file, size: file.size, url, displayURL: url };
|
||||
};
|
||||
}
|
||||
|
||||
export default class ProxyBackend implements Implementation {
|
||||
proxyUrl: string;
|
||||
|
Reference in New Issue
Block a user