1
0
mirror of https://github.com/simple-icons/simple-icons.git synced 2026-06-13 16:05:51 +02:00

Replace getter by Object.defineProperty

This commit is contained in:
Eric Cornelissen
2019-07-13 00:04:23 +01:00
parent d4071a3e19
commit 801c07d486
+6 -3
View File
@@ -20,7 +20,10 @@ function iconToKeyValue(icon) {
return `'${icon.title}':${iconToObject(icon)}`;
}
function iconToObject(icon) {
return `{title:'${icon.title}',svg:'${icon.svg}',get path(){return this.svg.match(/<path\\s+d="([^"]*)/)[1];},source:'${icon.source.replace(/'/g, "\\'")}',hex:'${icon.hex}'}`;
return `{title:'${icon.title}',svg:'${icon.svg}',source:'${icon.source.replace(/'/g, "\\'")}',hex:'${icon.hex}'}`;
}
function getObjectDefinesPropertyString(subject) {
return `Object.defineProperty(${subject},'path',{get:function(){return this.svg.match(/<path\\s+d="([^"]*)/)[1];}})`;
}
// 'main'
@@ -34,10 +37,10 @@ data.icons.forEach(icon => {
// write the static .js file for the icon
fs.writeFileSync(
`${iconsDir}/${filename}.js`,
`module.exports=${iconToObject(icon)};`
`module.exports=${iconToObject(icon)};${getObjectDefinesPropertyString("module.exports")}`
);
});
// write our generic index.js
const iconsString = icons.map(iconToKeyValue).join(',');
fs.writeFileSync(indexFile, `module.exports={${iconsString}};`);
fs.writeFileSync(indexFile, `module.exports={${iconsString}};for(var i in module.exports){${getObjectDefinesPropertyString("module.exports[i]")}}`);