MCPcopy Create free account
hub / github.com/EricSimons/ionic-course / timeZoneGetter

Function timeZoneGetter

code/songhop/www/lib/angular/angular.js:16984–16992  ·  view source on GitHub ↗
(date)

Source from the content-addressed store, hash-verified

16982}
16983
16984function timeZoneGetter(date) {
16985 var zone = -1 * date.getTimezoneOffset();
16986 var paddedZone = (zone >= 0) ? "+" : "";
16987
16988 paddedZone += padNumber(Math[zone > 0 ? 'floor' : 'ceil'](zone / 60), 2) +
16989 padNumber(Math.abs(zone % 60), 2);
16990
16991 return paddedZone;
16992}
16993
16994function getFirstThursdayOfYear(year) {
16995 // 0 = index of January

Callers

nothing calls this directly

Calls 1

padNumberFunction · 0.70

Tested by

no test coverage detected