mirror of
https://github.com/Mibew/simple-icons.git
synced 2024-11-17 19:04:13 +03:00
c6a9346985
* Add URL friendy/slug/file name as property to package icon objects * Test new property * Build index from template * Add .get function to index.js export * Test new .get function in index.js export * Use Uglify-JS to minify the code in the package's index.js * Update API in README.md * Renaem test using "slug" instead of "name"
18 lines
443 B
JavaScript
18 lines
443 B
JavaScript
var icons = {%s};
|
|
|
|
module.exports = icons;
|
|
module.exports.get = function(targetName) {
|
|
if (icons[targetName]) {
|
|
return icons[targetName];
|
|
} else {
|
|
var normalizedName = targetName.toLowerCase();
|
|
for (var iconName in icons) {
|
|
var icon = icons[iconName];
|
|
if ((icon.title && icon.title.toLowerCase() === normalizedName)
|
|
|| (icon.slug && icon.slug === normalizedName)) {
|
|
return icon;
|
|
}
|
|
}
|
|
}
|
|
}
|