1.0.1 • Published 9 years ago

textdate v1.0.1

Weekly downloads
4
License
MIT
Repository
github
Last release
9 years ago

node-text-date

Get text values back for date components

Usage

var textdate = require('textdate');

console.log('Text Date');

console.log(
	'Month from index (0 based): ',
	textdate.monthFromIndex( 7 )
);

console.log(
	'Full month from index (0 based): ',
	textdate.monthFromIndex( 7, true )
);

console.log(
	'Day from index (0 based): ',
	textdate.dayFromIndex( 3 )
);

console.log(
	'Full Day from index (0 based): ',
	textdate.dayFromIndex( 3, true )
);