A javaScript library to convert real time into Black Desert Online in game time.
npm install bdo-clock
npm install bdo-clock --save
`
Usage
`javascript
const bdoClock = require('bdo-clock');
console.log(Current in game time is ${bdoClock()});
`
$3
This library uses moment.js, so it takes any parameter take moment() can take.
`javascript
bdoClock('2018-06-08T20:20Z').toString(); // "7:00 a.m."
`
$3
`javascript
bdoClock('2018-06-08T20:20Z').isDaytime; // true
`
$3
`javascript
bdoClock('2018-06-08T20:20Z').nextDayNightChange.toISOString(); // "2018-06-08T23:40:00.000Z"
`
$3
See moment.Durations on how to use the returned duration object
`javascript
bdoClock('2018-06-08T20:20Z').timeElapsed.hours(); // 7
``