1
0
mirror of https://git.sr.ht/~cadence/cloudtube synced 2024-09-19 10:47:29 +00:00
cloudtube/utils/icon-loader.js
2021-12-28 16:32:11 +13:00

9 lines
310 B
JavaScript

const fs = require("fs").promises
const names = ["subscriptions", "settings"]
const icons = names.map(name => fs.readFile(`html/static/images/${name}.svg`, "utf8"))
module.exports.icons = Promise.all(icons).then(resolvedIcons => {
return new Map(names.map((name, index) => [name, resolvedIcons[index]]))
})