Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mikolalysenko/superscript-number
Convert a number to superscript
https://github.com/mikolalysenko/superscript-number
Last synced: about 2 months ago
JSON representation
Convert a number to superscript
- Host: GitHub
- URL: https://github.com/mikolalysenko/superscript-number
- Owner: mikolalysenko
- License: mit
- Created: 2015-02-24T00:31:09.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-02-24T00:38:00.000Z (almost 10 years ago)
- Last Synced: 2024-10-19T00:19:15.733Z (2 months ago)
- Language: JavaScript
- Size: 117 KB
- Stars: 9
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
superscript-number
==================
Converts a number to a superscript unicode character.# Example
```javascript
var super = require('superscript-number')console.log(super(1052))
console.log(super(-66))
console.log(super(1e32))
console.log(super(Infinity))
console.log(super(NaN))
console.log(super(-Infinity))
```Output:
```
¹⁰⁵²
⁻⁶⁶
¹ᵉ⁺³²
⁺ᴵⁿᶠ
ᴺᵃᴺ
⁻ᴵⁿᶠ
```Not the prettiest kerning in the world, but it works :shrug:
# Install
```
npm i superscript-number
```# API
#### `var str = require('superscript-number')(x[, base])`
Converts a number to a superscript string* `x` is a number
* `base` is an integer between 2 and 36 represeting the base of the output**Returns** a superscript string printing out `x`
# License
(c) 2015 Mikola Lysenko. MIT License.