astro-ghostcms/.pnpm-store/v3/files/26/704244508483a45c2a9659d6ccd...

16 lines
324 B
Plaintext
Raw Permalink Normal View History

2024-02-14 14:10:47 +00:00
import { baseService } from "./service.js";
const noopService = {
...baseService,
propertiesToHash: ["src"],
async transform(inputBuffer, transformOptions) {
return {
data: inputBuffer,
format: transformOptions.format
};
}
};
var noop_default = noopService;
export {
noop_default as default
};