summaryrefslogtreecommitdiffstats
path: root/src/test/resources/data/pac/testWeekDay.pac
blob: 1b37cb1f668fae2ad763f2444da6cb1a28e82ff6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
// Test weekday functions

function FindProxyForURL(url, host) {
  weekdayRange("MON");
  weekdayRange("MON", "GMT");	
  weekdayRange("FRI", "MON");
  weekdayRange("MON", "WED", "GMT");
  	
  return "DIRECT";
}