juicy-cookie
v0.1.2
Published
provides methods for creating and accessing browser cookie data
Downloads
4
Readme
juicy-cookie
(c)Bumblehead, 2013,2016 MIT-license
juicy-cookie will get, set, and rm cookie data.
juicycookie.get( name )
cookie names are case-insensitive rfc link
juicycookie.get('cookiename') // 'cookieval'
juicycookie.set( name, value, opts )
juicy-cookie associates cookies with the top-level domain by default. cookies must associate with a domain, beginning with a '.' character, ex '.foxsports.com'.
define 'opt.expires' with unicode properties or a Date object.
juicycookie.set('cookiename', 'cookieval', { expires : { d : 5, hh : 2 // expires: 5 days, 2 hours } })
juicycookie.rm( name )
juicycookie.rm('cookiename')
juicycookie.getall( )
return all cookie definitions found on the document
juicycookie.getall() //{ // cookiename1 : 'cookieval1' // cookiename2 : 'cookieval2' //}
(The MIT License)
Copyright (c) Bumblehead [email protected]
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.