dateformats
This library allows you to easily convert date time formats between .Net, moment.js, jQueryUI datepicker, Timepicker.
Usage
// Convert from DotNet to Timepicker ("at HH:mm:ss.fff" => "'at 'HH:mm:ss.l")
dateFormat.convert('at HH:mm:ss.fff', dateFormat.dotNet, dateFormat.timepicker)
Here are all the formats:
-
dotNet DateTime(.net class)
-
momentJs moment.js
-
datepicker jQueryUI datepicker
-
timepicker Timepicker
-
standard my own format
Background
Some days ago I wrote this for my requirements and posted it on
stackoverflow. I was asked to put it on
github and npm, so here it is.
It comes in C# and TypeScript/JavaScript, you can use either or both. Several syntaxes are ignored during the conversion due to lack of support in most other rules, such as week of year in moment.js, however what got left is sufficient for many scenario in my opinion.
I also created my own
standard rule, I mean to stick to it in my future projects and convert to
local format only at the last minute. Just remove it if you don't like it. You can also easily create other rules too, if necessary.
It is tested more or less, though I can't say that there aren't any bugs. Use it at your own risk.