angular-date

Simple & useful, date manipulation library for angular 1.x


Keywords
Date, manipulation, in, angular, 1.x
License
GPL-2.0+
Install
bower install angular-date

Documentation

angular-date

Simple & useful, native date manipulation library for Angular 1.x

Docs coming soon, meanwhile, use the source, luke. :)

5-second install:

angular.module('YourModuleName', ['ngDate'])

Usage example:

angular.module('YourModuleName', ['ngDate'])
.controller('YourController', function ($date, $log) {
  $log.debug('it is currently:', $date.now())
});