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