mirror of
https://github.com/Mibew/simple-icons.git
synced 2024-11-17 19:04:13 +03:00
11 lines
173 B
JavaScript
11 lines
173 B
JavaScript
var icons = {%s};
|
|
|
|
Object.defineProperty(icons, "get", {
|
|
enumerable: false,
|
|
value: function(targetName) {
|
|
return icons[targetName];
|
|
}
|
|
});
|
|
|
|
module.exports = icons;
|