Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
17 lines
523 B
Plaintext
17 lines
523 B
Plaintext
export async function optionallyAppendMetadata({ req, sharpFile, withMetadata }) {
|
|
const metadata = await sharpFile.metadata();
|
|
if (withMetadata === true) {
|
|
return sharpFile.withMetadata();
|
|
} else if (typeof withMetadata === 'function') {
|
|
const useMetadata = await withMetadata({
|
|
metadata,
|
|
req
|
|
});
|
|
if (useMetadata) {
|
|
return sharpFile.withMetadata();
|
|
}
|
|
}
|
|
return sharpFile;
|
|
}
|
|
|
|
//# sourceMappingURL=optionallyAppendMetadata.js.map |