mirror of
https://github.com/simple-icons/simple-icons.git
synced 2024-11-16 00:59:07 +02:00
12 lines
368 B
JavaScript
12 lines
368 B
JavaScript
import * as simpleIcons from '../index.mjs';
|
|
import {getIconSlug, getIconsData, slugToVariableName} from '../sdk.mjs';
|
|
import {testIcon} from './test-icon.js';
|
|
|
|
for (const icon of await getIconsData()) {
|
|
const slug = getIconSlug(icon);
|
|
const variableName = slugToVariableName(slug);
|
|
const subject = simpleIcons[variableName];
|
|
|
|
testIcon(icon, subject, slug);
|
|
}
|