astro-ghostcms/.pnpm-store/v3/files/a7/bb503b7bfb9362a6b242a242cfc...

13 lines
242 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
"use strict"
const readCache = require("read-cache")
const dataURL = require("./data-url")
module.exports = filename => {
if (dataURL.isValid(filename)) {
return dataURL.contents(filename)
}
return readCache(filename, "utf-8")
}