An open API service indexing awesome lists of open source software.

https://github.com/iconfont-cli/iconfont-parser

Fetch iconfont symbols and parse them to json
https://github.com/iconfont-cli/iconfont-parser

Last synced: 8 months ago
JSON representation

Fetch iconfont symbols and parse them to json

Awesome Lists containing this project

README

          

# iconfont-parser

Transform iconfont symbol url to object data

```typescript
import { fetchXml } from 'iconfont-parser';

fetchXml(SYMBOL_URL).then((data) => {
console.log(data);
});
```