https://github.com/nikfranki/tiny
🙃 Npm package - Remove all spaces from a string.
https://github.com/nikfranki/tiny
javascript license npm npm-pa shields
Last synced: 8 months ago
JSON representation
🙃 Npm package - Remove all spaces from a string.
- Host: GitHub
- URL: https://github.com/nikfranki/tiny
- Owner: NikFranki
- License: mit
- Created: 2018-10-06T03:34:42.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-10-06T09:07:34.000Z (about 7 years ago)
- Last Synced: 2025-02-06T12:48:55.501Z (8 months ago)
- Topics: javascript, license, npm, npm-pa, shields
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/@franki/tiny
- Size: 4.88 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# @franki/tiny
[](https://www.npmjs.com/package/@franki/tiny)
[](https://www.npmjs.com/package/@franki/tiny)Removes all spaces from a string.
## Install
```
$ npm install @franki/tiny
```## Usage
```js
const tiny = require("@franki/tiny");tiny("So much space!");
//=> "Somuchspace!"tiny(1337);
//=> Uncaught TypeError: Tiny wants a string!
// at tiny (:2:41)
// at :1:1