0.1.1 • Published 1 year ago

ng-date-utils v0.1.1

Weekly downloads
-
License
-
Repository
github
Last release
1 year ago

ng-date-utils

AngularJS filter to show dates always in UTC

Usage

  • toUTC filter is wrapper around AngularJs date filter. It always show the date in UTC. This is nice to show things like birthday dates without being affected by browser timezones.

You can pass one optionnal parameter

  • customFormat: by default 'longDate'. To customize it see here

Example

npm add ng-date-utils
import { ngDateUtils } from "ng-date-utils";

angular.module("myApp", ngDateUtils.name).controller("controller", ($scope) => {
	$scope.birthday = "1984-03-11";
	// It can accepts Dates too or complete isodate strings
	$scope.birthday = new Date();
});
<p>Showing date { birthday | toUTC }</p>
// This will show March 11, 1984
0.1.1

1 year ago

0.1.0

1 year ago