123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- /**
- * @license Angular v19.2.13
- * (c) 2010-2025 Google LLC. https://angular.io/
- * License: MIT
- */
- function parseCookieValue(cookieStr, name) {
- name = encodeURIComponent(name);
- for (const cookie of cookieStr.split(';')) {
- const eqIndex = cookie.indexOf('=');
- const [cookieName, cookieValue] = eqIndex == -1 ? [cookie, ''] : [cookie.slice(0, eqIndex), cookie.slice(eqIndex + 1)];
- if (cookieName.trim() === name) {
- return decodeURIComponent(cookieValue);
- }
- }
- return null;
- }
- const PLATFORM_BROWSER_ID = 'browser';
- const PLATFORM_SERVER_ID = 'server';
- /**
- * Returns whether a platform id represents a browser platform.
- * @publicApi
- */
- function isPlatformBrowser(platformId) {
- return platformId === PLATFORM_BROWSER_ID;
- }
- /**
- * Returns whether a platform id represents a server platform.
- * @publicApi
- */
- function isPlatformServer(platformId) {
- return platformId === PLATFORM_SERVER_ID;
- }
- /**
- * A wrapper around the `XMLHttpRequest` constructor.
- *
- * @publicApi
- */
- class XhrFactory {
- }
- export { PLATFORM_BROWSER_ID, PLATFORM_SERVER_ID, XhrFactory, isPlatformBrowser, isPlatformServer, parseCookieValue };
- //# sourceMappingURL=xhr-BfNfxNDv.mjs.map
|