geomoment

0.6.1 • Public • Published

geomoment

NPM Build Status

This library is basically just a thin, sugary wrapper over moment.js and moment-timezone.

What can it do?

var geomoment = require('geomoment');
 
// Timezone sugar
geomoment.pacific('2013-01-01', 'YYYY-MM-DD')
geomoment.eastern('2013-02-08 09:30:26.123')
geomoment.central.tzid
 
// Day string sugar
geomoment.day('2013-01-01', geomoment.pacific.tzid)
geomoment.day('20101221', geomoment.central.tzid)
geomoment().dayString() // => '2013-01-01'
 
// Date formats (see below for a complete list)
geomoment.formats.day         = 'YYYY-MM-DD'    // 2013-01-01
 
// Stubbing time
geomoment.stubTime(geomoment.pacific('2013-01-01'));
geomoment().dayString(); // => '2013-01-01'
geomoment.restoreTime();
geomoment().dayString(); // => today's date

See also: geomoment-angular for use in an angular.js project.

Date formats

day 2013-12-06 YYYY-MM-DD
time 15:22 HH:mm
dayTime 2013-12-06 15:22 YYYY-MM-DD HH:mm
iCalDay 20131206 YYYYMMDD
iCalTime 152207 HHmmss
iCalDayTime 20131206T152207 YYYYMMDD[T]HHmmss
slashDay 12/6/2013 M/D/YYYY
shortSlashDay 12/6 M/D
shortDay Friday, Dec 6 dddd, MMM D
abbrvDay Fri Dec 6 ddd MMM D
longDay Friday, December 6, 2013 dddd, MMMM D, YYYY
weekday Friday dddd
unixDate Fri Dec 06 2013 15:22:07 ddd MMM DD YYYY HH:mm:ss

License

The MIT License (MIT)

Copyright (c) 2013 Good Eggs Inc.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Package Sidebar

Install

npm i geomoment

Weekly Downloads

3

Version

0.6.1

License

MIT

Last publish

Collaborators

  • goodeggs-admin
  • demands
  • sherrman