This repository has been archived on 2024-11-13. You can view files and clone it, but cannot push or open issues or pull requests.
fediversity.eu/node_modules/postcss-import/lib/load-content.js

13 lines
242 B
JavaScript
Raw Normal View History

2024-03-26 16:28:28 +01: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")
}