/usr/local/lib/node_modules/pm2/node_modules/pac-resolver/dist
NameSizeModeActions
dateRange.d.ts22940644editdlrm
dateRange.d.ts.map2310644editdlrm
dateRange.js24220644editdlrm
dateRange.js.map2560644editdlrm
dnsDomainIs.d.ts6120644editdlrm
dnsDomainIs.d.ts.map2310644editdlrm
dnsDomainIs.js7900644editdlrm
dnsDomainIs.js.map3660644editdlrm
dnsDomainLevels.d.ts4460644editdlrm
dnsDomainLevels.d.ts.map2130644editdlrm
dnsDomainLevels.js6660644editdlrm
dnsDomainLevels.js.map3770644editdlrm
dnsResolve.d.ts4370644editdlrm
dnsResolve.d.ts.map2130644editdlrm
dnsResolve.js7700644editdlrm
dnsResolve.js.map4390644editdlrm
index.d.ts23080644editdlrm
index.d.ts.map18840644editdlrm
index.js35190644editdlrm
index.js.map21700644editdlrm
ip.d.ts2080644editdlrm
ip.d.ts.map2220644editdlrm
ip.js17480644editdlrm
ip.js.map15470644editdlrm
isInNet.d.ts9910644editdlrm
isInNet.d.ts.map2470644editdlrm
isInNet.js14360644editdlrm
isInNet.js.map5650644editdlrm
isPlainHostName.d.ts4180644editdlrm
isPlainHostName.d.ts.map2130644editdlrm
isPlainHostName.js5280644editdlrm
isPlainHostName.js.map2460644editdlrm
isResolvable.d.ts2580644editdlrm
isResolvable.d.ts.map1990644editdlrm
isResolvable.js5610644editdlrm
isResolvable.js.map3890644editdlrm
localHostOrDomainIs.d.ts8940644editdlrm
localHostOrDomainIs.d.ts.map2520644editdlrm
localHostOrDomainIs.js12400644editdlrm
localHostOrDomainIs.js.map5780644editdlrm
myIpAddress.d.ts4280644editdlrm
myIpAddress.d.ts.map1860644editdlrm
myIpAddress.js16580644editdlrm
myIpAddress.js.map9890644editdlrm
shExpMatch.d.ts7360644editdlrm
shExpMatch.d.ts.map2290644editdlrm
shExpMatch.js11200644editdlrm
shExpMatch.js.map5410644editdlrm
timeRange.d.ts11840644editdlrm
timeRange.d.ts.map2080644editdlrm
timeRange.js33390644editdlrm
timeRange.js.map23950644editdlrm
util.d.ts3060644editdlrm
util.d.ts.map3670644editdlrm
util.js5670644editdlrm
util.js.map5190644editdlrm
weekdayRange.d.ts14480644editdlrm
weekdayRange.d.ts.map3470644editdlrm
weekdayRange.js26620644editdlrm
weekdayRange.js.map15800644editdlrm
Edit: /usr/local/lib/node_modules/pm2/node_modules/pac-resolver/dist/dateRange.d.ts (2294B)
/** * If only a single value is specified (from each category: day, month, year), the * function returns a true value only on days that match that specification. If * both values are specified, the result is true between those times, including * bounds. * * Even though the examples don't show, the "GMT" parameter can be specified * in any of the 9 different call profiles, always as the last parameter. * * Examples: * * ``` js * dateRange(1) * true on the first day of each month, local timezone. * * dateRange(1, "GMT") * true on the first day of each month, GMT timezone. * * dateRange(1, 15) * true on the first half of each month. * * dateRange(24, "DEC") * true on 24th of December each year. * * dateRange(24, "DEC", 1995) * true on 24th of December, 1995. * * dateRange("JAN", "MAR") * true on the first quarter of the year. * * dateRange(1, "JUN", 15, "AUG") * true from June 1st until August 15th, each year (including June 1st and August * 15th). * * dateRange(1, "JUN", 15, 1995, "AUG", 1995) * true from June 1st, 1995, until August 15th, same year. * * dateRange("OCT", 1995, "MAR", 1996) * true from October 1995 until March 1996 (including the entire month of October * 1995 and March 1996). * * dateRange(1995) * true during the entire year 1995. * * dateRange(1995, 1997) * true from beginning of year 1995 until the end of year 1997. * ``` * * dateRange(day) * dateRange(day1, day2) * dateRange(mon) * dateRange(month1, month2) * dateRange(year) * dateRange(year1, year2) * dateRange(day1, month1, day2, month2) * dateRange(month1, year1, month2, year2) * dateRange(day1, month1, year1, day2, month2, year2) * dateRange(day1, month1, year1, day2, month2, year2, gmt) * * @param {String} day is the day of month between 1 and 31 (as an integer). * @param {String} month is one of the month strings: JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC * @param {String} year is the full year number, for example 1995 (but not 95). Integer. * @param {String} gmt is either the string "GMT", which makes time comparison occur in GMT timezone; if left unspecified, times are taken to be in the local timezone. * @return {Boolean} */ export default function dateRange(): boolean; //# sourceMappingURL=dateRange.d.ts.map