Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/khang-nd/special-chars
Special characters
https://github.com/khang-nd/special-chars
special-characters
Last synced: about 2 hours ago
JSON representation
Special characters
- Host: GitHub
- URL: https://github.com/khang-nd/special-chars
- Owner: khang-nd
- License: mit
- Created: 2021-02-19T18:57:09.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-02-19T18:58:14.000Z (over 3 years ago)
- Last Synced: 2024-10-12T14:30:04.978Z (about 1 month ago)
- Topics: special-characters
- Language: JavaScript
- Homepage:
- Size: 28.3 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Special Characters
[![npm](https://img.shields.io/npm/v/special-chars)](http://npm.im/special-chars)
[![gzip size](https://img.shields.io/bundlephobia/minzip/special-chars)](https://unpkg.com/special-chars)> A ready-made package to include special characters in your project, categorized.
## Installation
### Browser global
```html
console.log(spc);
/* {
Arrows: [],
Latin: [],
Math: [],
Misc: [],
} */```
### Node
```
npm install special-chars
``````js
// CJS
var spc = require("special-chars");// or ESM
import spc from "special-chars";
```## Credits
The data of special characters is derived directly from this [react-character-map](https://github.com/Dayjo/react-character-map) repo. Special thanks to its author and contributors.