# jbdap-makeup

> A javascript extention library which makes it easier to code with js.

Latest version **0.1.5** (published 2020-07-12) · GPL-3.0 license · 0 weekly downloads

## Install

```sh
npm install jbdap-makeup
pnpm add jbdap-makeup
yarn add jbdap-makeup
bun add jbdap-makeup
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.1.5 |
| Published | 2020-07-12 |
| First published | 2019-05-18 |
| Weekly downloads | 0 |
| License | GPL-3.0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 41.9 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | JBDAP TEAM |
| Maintainers | jbdap |

## Links

- npm: https://www.npmjs.com/package/jbdap-makeup
- Repository: https://github.com/JBDAP/JBDAP-Node-Makeup
- Homepage: https://github.com/JBDAP/JBDAP-Node-Makeup#readme
- Issues: https://github.com/JBDAP/JBDAP-Node-Makeup/issues
- npm.io page: https://npm.io/package/jbdap-makeup

## Recent versions

- 0.1.5 (latest) — 2020-07-12
- 0.1.3 — 2019-05-18
- 0.1.2 — 2019-05-18
- 0.1.1 — 2019-05-18
- 0.1.0 — 2019-05-18

## README

# JBDAP-Node-Makeup

### A basic library for js development, which extends String/Number/Date to make coding easier.

## **Install**

~~~
npm install jbdap-makeup --save
~~~

or

~~~
yarn add jbdap-makeup
~~~

## **Features**

- String
    - String.prototype.replaceAll(oldStr,newStr) - global replacement function, no need to write regExp
    - String.prototype.removeBlank() - remove all blanks
    - String.prototype.removeEOL() - remove all line-breaks
    - String.prototype.toHash(cipher) - get the hash value by different ciphers, such as md5/sha256
    - String.prototype.md5() - a shortcut for generating a md5 hash
    - String.prototype.sha256()
    - String.prototype.sha512()
    - String.prototype.padLeft(len,char) - padding a string to specific length with one character
    - String.prototype.padRight(len,char)
- Date
    - Date.makeOne(year,month,day,hour,minute,second,milsec) - the only difference between this and *new Date()* is that you need not to assign the month parameter to 0 when you actually mean the 1st month (January), i think this way is more humanized
    - Date.prototype.addMinutes()
    - Date.prototype.addHours()
    - Date.prototype.addDays()
    - Date.prototype.dateString() - converting a Date Object to a string, ignoring the timezone, just the same as what you get from a local clock
    - Date.prototype.timeString() - it does the same work as *dateString()*, except only getting the time part
    - Date.prototype.dtString() - *dtString() = dateString() + ' ' + timeString()*
- Number
    - Number.randomBetween(min,max) - get a random number between min and max


## Enjoy it :-)

---
_Source: https://npm.io/package/jbdap-makeup · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
