npm_useful_js
Version:
```sh $ npm i --save npm_useful_js ``` # Join us - make world better! ----
52 lines (39 loc) • 958 B
Markdown
# install
```sh
$ npm i --save npm_useful_js
```
# Join us - make world better!
----
## in nodeJS!
```sh
const {
isSeven,
print,
printTwo,
isPositive,
isNegative,
return200,
returnSuccess,
_5k,
print99Snowflake,
print99SnowflakeHorizontal,
yourLocalHostAddress,
meaningOfRecursion
} = require("npm_useful_js");
# be positive :D
return200(400) // 200
returnSuccess(404) // 200
print(isSeven(10)) // false
print(isSeven(7)) // true
printTwo() // print 2 in console
isPositive(5) // true
isNegative(-5) // true
_5k("nozza") // false
_5k("mate") // true
print99Snowflake() // vertical printing
print99SnowflakeHorizontal() // Horizontal printing
# your localhost address :D
yourLocalHostAddress()
# meaning of recursion [ returns link ]
meaningOfRecursion()
```