persona-community-5/.pnpm-store/v3/files/a7/bb503b7bfb9362a6b242a242cfc75cd5af9089f06bf292cd41683b5ef13c89440b62a5777782c9e04ae5bc77140aa5717b48b60d3a09ca1c9ddc076b3d2b77
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00:00

13 lines
242 B
Plaintext

"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")
}