mirror of
https://github.com/captbaritone/webamp.git
synced 2026-07-23 01:57:29 +00:00
9 lines
222 B
JavaScript
9 lines
222 B
JavaScript
const skins = require("../src/skins.json");
|
|
|
|
const indexes = [];
|
|
|
|
Object.entries(skins).forEach(([hash, { fileName }]) => {
|
|
indexes.push({ objectID: hash, fileName });
|
|
});
|
|
|
|
console.log(JSON.stringify(indexes, null, 2));
|