2015-08-12 08:50:40 -04:00
/ *
2015-02-23 00:42:36 -05:00
The MIT License
Copyright ( c ) 2010 - 2015 Google , Inc . http : //angularjs.org
Permission is hereby granted , free of charge , to any person obtaining a copy
of this software and associated documentation files ( the "Software" ) , to deal
in the Software without restriction , including without limitation the rights
to use , copy , modify , merge , publish , distribute , sublicense , and / or sell
copies of the Software , and to permit persons to whom the Software is
furnished to do so , subject to the following conditions :
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software .
THE SOFTWARE IS PROVIDED "AS IS" , WITHOUT WARRANTY OF ANY KIND , EXPRESS OR
IMPLIED , INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY ,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT . IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM , DAMAGES OR OTHER
LIABILITY , WHETHER IN AN ACTION OF CONTRACT , TORT OR OTHERWISE , ARISING FROM ,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE .
* /
/ *
2020-10-19 20:31:49 -04:00
AngularJS v1 . 8.0
( c ) 2010 - 2020 Google , Inc . http : //angularjs.org
2015-02-23 00:42:36 -05:00
License : MIT
* /
2020-01-21 15:40:46 -05:00
( function ( n , e ) { 'use strict' ; function m ( d , k , l ) { var a = l . baseHref ( ) , h = d [ 0 ] ; return function ( f , b , c ) { var d , g ; c = c || { } ; g = c . expires ; d = e . isDefined ( c . path ) ? c . path : a ; e . isUndefined ( b ) && ( g = "Thu, 01 Jan 1970 00:00:00 GMT" , b = "" ) ; e . isString ( g ) && ( g = new Date ( g ) ) ; b = encodeURIComponent ( f ) + "=" + encodeURIComponent ( b ) ; b = b + ( d ? ";path=" + d : "" ) + ( c . domain ? ";domain=" + c . domain : "" ) ; b += g ? ";expires=" + g . toUTCString ( ) : "" ; b += c . secure ? ";secure" : "" ; b += c . samesite ? ";samesite=" + c . samesite : "" ; c = b . length + 1 ; 4096 < c && k . warn ( "Cookie '" + f + "' possibly not set or overflowed because it was too large (" +
2020-10-19 20:31:49 -04:00
c + " > 4096 bytes)!" ) ; h . cookie = b } } e . module ( "ngCookies" , [ "ng" ] ) . info ( { angularVersion : "1.8.0" } ) . provider ( "$cookies" , [ function ( ) { var d = this . defaults = { } ; this . $get = [ "$$cookieReader" , "$$cookieWriter" , function ( k , l ) { return { get : function ( a ) { return k ( ) [ a ] } , getObject : function ( a ) { return ( a = this . get ( a ) ) ? e . fromJson ( a ) : a } , getAll : function ( ) { return k ( ) } , put : function ( a , h , f ) { l ( a , h , f ? e . extend ( { } , d , f ) : d ) } , putObject : function ( a , d , f ) { this . put ( a , e . toJson ( d ) , f ) } , remove : function ( a , h ) { l ( a , void 0 , h ? e . extend ( { } , d , h ) : d ) } } } ] } ] ) ; m . $inject =
2020-01-21 15:40:46 -05:00
[ "$document" , "$log" , "$browser" ] ; e . module ( "ngCookies" ) . provider ( "$$cookieWriter" , function ( ) { this . $get = m } ) } ) ( window , window . angular ) ;
2015-02-23 00:42:36 -05:00
//# sourceMappingURL=angular-cookies.min.js.map