Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cho45/micro-strptime.js
micro strptime implementation on JavaScript
https://github.com/cho45/micro-strptime.js
hour javascript strptime
Last synced: 13 days ago
JSON representation
micro strptime implementation on JavaScript
- Host: GitHub
- URL: https://github.com/cho45/micro-strptime.js
- Owner: cho45
- Created: 2012-08-13T10:18:11.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2018-05-16T15:06:13.000Z (over 6 years ago)
- Last Synced: 2024-09-22T17:19:07.635Z (about 2 months ago)
- Topics: hour, javascript, strptime
- Language: JavaScript
- Size: 11.7 KB
- Stars: 10
- Watchers: 3
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
micro-strptime.js
=================https://github.com/cho45/micro-strptime.js
Micro strptime implementation on JavaScript.
SYNOPSYS
========var strptime = require('micro-strptime').strptime;
strptime('05/May/2012:09:00:00 +0900', '%d/%B/%Y:%H:%M:%S %Z');FORMAT DESCRIPTERS
==================Current supported format descripters:
* %% : %
* %a : abbreviated name of day of week (just ignored)
* %A : name of day of week (just ignored)
* %b : abbreviated name of month
* %B : name of month
* %Y : four digits full year
* %m : month
* %d : date
* %H : hour
* %M : minute
* %S : second
* %s : milli second
* %z : timezone string like +0900 or -0300
* %Z : timezone string like '+09:00', '-03:00', 'Z' or 'UTC'.
* %I : hour (12-hour colock)
* %p : AM or PMLICENSE
=======MIT: http://cho45.github.com/mit-license