initial commit

This commit is contained in:
2026-06-25 21:30:32 +00:00
commit 328faf6251
220 changed files with 162103 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
/**
* @license
* Copyright The Closure Library Authors.
* SPDX-License-Identifier: Apache-2.0
*/
/**
* @fileoverview A static instance of goog.net.Cookies that uses the default
* window document.
* @deprecated use `goog.net.Cookies.getInstance()` instead.
*/
goog.provide('goog.net.cookies');
goog.require('goog.net.Cookies');
// TODO(closure-team): This should be a singleton getter instead of a static
// instance.
/**
* A static default instance.
* @const {!goog.net.Cookies}
*/
goog.net.cookies = goog.net.Cookies.getInstance();