Giter Site home page Giter Site logo

cybernetics / an.hour.ago Goto Github PK

View Code? Open in Web Editor NEW

This project forked from davidchambers/an.hour.ago

0.0 1.0 0.0 154 KB

A small utility which enables wonderfully expressive date and time manipulation in JavaScript

License: Do What The F*ck You Want To Public License

an.hour.ago's Introduction

an.hour.ago

an.hour.ago is a small utility which enables wonderfully expressive date and time manipulation in JavaScript.

Before we proceed, let me be clear that if supporting Internet Explorer is a requirement, you'd best turn back now. If, on the other hand, you're writing server-side JavaScript (or CoffeeScript) and desire an elegant means of expressing relative dates and times, read on!

Let's start with a simple example...

# CoffeeScript                                  # JavaScript
3.days.ago                                      # 3..days.ago

This produces a Date instance representing 72 hours before the present. Neat. What about the future?

1.minute.from_now                               # 1..minute.from_now

Easy! Note the use of minute rather than minutes. The two are synonymous; singular and plural properties exist for each of the supported units.

Decimals? You betcha:

1.5.hours.ago                                   # 1.5.hours.ago

In fact, the JavaScript is identical to the CoffeeScript in this case as the awkward double dot is not required.

What about dates relative to other points in time?

tomorrow  = 1.day.from_now                      # var tomorrow  = 1..day.from_now
halloween = new Date '31 October 2011'          # var halloween = new Date('31 October 2011')
christmas = new Date '25 December 2011'         # var christmas = new Date('25 December 2011')
                                                #
1.week.from tomorrow                            # 1..week.from(tomorrow)
                                                #
2.days.after halloween                          # 2..days.after(halloween)
                                                #
1.week.before christmas                         # 1..week.before(christmas)

from and after are synonymous; use whichever reads better.

This is pleasing, you may be thinking, but I'd never say “one week from tomorrow” – it sounds a bit stiff.

Well, if you must...

a = an = 1                                      # var a = 1, an = 1
                                                #
a.week.from tomorrow                            # a.week.from(tomorrow)
                                                #
a.fortnight.from_now                            # a.fortnight.from_now
                                                #
an.hour.ago                                     # an.hour.ago

Oh, and I should mention, you can add NaturalDate instances using the and method:

an.hour.and(58.minutes).from_now                # an.hour.and(58..minutes).from_now
                                                #
11.hours.and(36.minutes).and(9.seconds).ago     # 11..hours.and(36..minutes).and(9..seconds).ago

Can you help me with date comparison? To determine whether an event occurred more than a week ago I have to ask whether its numeric representation is less than that of "a week ago". It makes my head hurt.

Perhaps you find this more natural?

event_occurred.more_than(a.week).ago

A practical example:

user_registered = db.get(id).registration_date

$('#tips').show() if user_registered.less_than(15.minutes).ago

before/after can follow less_than/more_than:

apply_late_fee() if costume_returned.more_than(2.days).after halloween

There's also an either_side_of method which does what it says on the tin:

unfortunate = birthday.less_than(3.days).either_side_of christmas

That just about covers it.

Running the test suite

make setup
make test

One last thing...

To be clear, an.hour.ago fiddles with Date.prototype and Number.prototype. Two properties are added to Date.prototype:

  • less_than
  • more_than

The following properties are added to Number.prototype:

  • day
  • days
  • hour
  • hours
  • millisecond
  • milliseconds
  • minute
  • minutes
  • second
  • seconds
  • week
  • weeks

Each of these properties has a "getter" which returns a NaturalDate object. The rest of the methods (before, after/from, and and) are attached to NaturalDate.prototype (which is not exposed).

an.hour.ago's People

Contributors

davidchambers avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.