Files
time-function/README.md
Carlos Gutierrez af728d8f3c chore: adding readme
2021-11-22 13:00:37 -06:00

22 lines
383 B
Markdown

# Convert time GMT
convert the timestamp in a format dd/mm/yyyy hh:mm:ss with GMT as default
## Installing
npm i convert-time-gmt --save
## Usage
On the main file:
```js
const gmtConversion = require('convert-time-gmt')
gmtConversion() // 2021/22/11 12:00:00
gmtConversion(new Date()) // 2021/22/11 12:00:00
gmtConversion(new Date(), 'GMT-05:00') // 2021/22/11 07:00:00
```