fs-date-parser

1.0.0 • Public • Published

fs-date-parser

For static site blogs or pages you might want to setup the path to contain a date for sorting and publication. This little parser is fairly flexible and aimed exactly at this purpose.

Usage

Install the date parser using:

$ npm i fs-date-parser --save

Then you can use it just like

var parse = require('fs-date-parser');
 
parse('2015/06/09-hello.md'); // {date: /*Tue Jun 09 2015 00:00:00 GMT+0900 (JST)*/, rest: 'hello.md'}
parse('2015-06-09-hello.md'); // {date: /*Tue Jun 09 2015 00:00:00 GMT+0900 (JST)*/, rest: 'hello.md'}
 
parse('hello.md') // {date:}

(writing this from a japanese time-zone)

Package Sidebar

Install

npm i fs-date-parser

Weekly Downloads

1

Version

1.0.0

License

ISC

Last publish

Collaborators

  • leichtgewicht