Skip to content

Instantly share code, notes, and snippets.

@sergeevyi
Created October 21, 2016 07:50
Show Gist options
  • Save sergeevyi/ee17be8547aa96ace69d735bcfea1919 to your computer and use it in GitHub Desktop.
Save sergeevyi/ee17be8547aa96ace69d735bcfea1919 to your computer and use it in GitHub Desktop.
UTC to Local Date Time Filter
(function () {
'use strict';
angular
.module('app')
.filter('utcToLocal', Filter);
function Filter($filter) {
return function (utcDateString, format) {
// return if input date is null or undefined
if (!utcDateString) {
return;
}
// append 'Z' to the date string to indicate UTC time if the timezone isn't already specified
if (utcDateString.indexOf('Z') === -1 && utcDateString.indexOf('+') === -1) {
utcDateString += 'Z';
}
// convert and format date using the built in angularjs date filter
return $filter('date')(utcDateString, format);
};
}
})();
/* Example of using */
<span>Local date & time converted from UTC: {{vm.myUtcDate | utcToLocal:'dd.MM.yy - hh.mm a'}}</span>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment