@vineshdev/tinytest
Version:
Removes all spaces from string
26 lines (17 loc) • 473 B
Markdown
# @vineshdev/tinytest
[](https://github.com/vineshkumar87/tinytest)
tiniest npm test module
## Install
```
$ npm install @vineshdev/tinytest
```
## Usage
```js
const tiny = require("@vineshdev/tinytest");
tiny("Have Lot Of Space");
//=> "HaveLotOfSpace"
tiny(1337);
//=> Uncaught TypeError: Tiny wants a string!
// at tiny (<anonymous>:2:41)
// at <anonymous>:1:1
```