1.0.12 • Published 5 months ago

dodod v1.0.12

Weekly downloads
3
License
MIT
Repository
github
Last release
5 months ago

DoD Ordinal Date (dodod)

Generate a date string utilizing the DoD's confusingly named "Julian Date" format, which is not really a Julian Date at all, more like a Julian Day--or, wait, is it more like a Julian Year?

But seriously, it's just a slightly modified Ordinal Date.

Because npm I named it something trendy and cryptic sounding.

See this reference which the code and all tests are based on: https://landweb.modaps.eosdis.nasa.gov/browse/calendar.html

Badges

NPMBuildTest CoverageDependencies
npm versionPublish NPM PackageCoverage Status0

Usage

import { getOrdinalDatetime, getOrdinalDate } from 'dodod';

const date = new Date(2019, 10, 19, 16, 14);

let j = getOrdinalDatetime(date);
let k = getOrdinalDate(date);

console.log(j); // "93231614"
console.log(k); // "9323"

/* Where:
 *   "9"   // Last digit of year
 * + "323" // Ordinal day in year
 * + "16"  // Hour (24h format)
 * + "14"  // Minute
 */

Contributing

hmu if you can get me a cool logo.

1.0.12

5 months ago

1.0.11

1 year ago

1.0.10

1 year ago

1.0.9

3 years ago

1.0.8

3 years ago

1.0.7

4 years ago

1.0.6

4 years ago

1.0.5

5 years ago

1.0.4

5 years ago

1.0.3

5 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago

0.3.0

6 years ago

0.2.0

6 years ago

0.2.0-alpha

6 years ago

0.1.0

6 years ago