JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 383
  • Score
    100M100P100Q91258F
  • License MIT

The best way to convert C# ticks date time to JavaScript Date.

Package Exports

  • ticks-to-date
  • ticks-to-date/src/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (ticks-to-date) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

ticks-to-date

version license

The best way to convert C# ticks date time to JavaScript Date.

ticks-to-date is free and will always remain free
A simple and quick way to support the project is to buy me a coffee.
It will take no more than 5 minutes and will allow the project to keep going

Buy me a coffee

Installation

NPM

npm install --save-dev ticks-to-date

Yarn

yarn add ticks-to-date

Example

const ticksToDate = require('ticks-to-date');
const date = ticksToDate(636976874910235300);
console.log(date.toUTCString());                // Tue, 02 Jul 2019 18:04:51 GMT
console.log(date.getUTCDay());                  // 2
console.log(date.getUTCMonth());                // 6
console.log(date.getUTCFullYear());             // 2019
// etc...

For more information about Date object see:
https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Date

For more information about ticks see:
https://docs.microsoft.com/dotnet/api/system.datetime.ticks

Contributing

See contributing guideline.

License

MIT LICENSE