main
Last change
on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago |
Initial commit
|
-
Property mode
set to
100644
|
File size:
306 bytes
|
Line | |
---|
1 | 'use strict'
|
---|
2 |
|
---|
3 | // https://wicg.github.io/cookie-store/#cookie-maximum-attribute-value-size
|
---|
4 | const maxAttributeValueSize = 1024
|
---|
5 |
|
---|
6 | // https://wicg.github.io/cookie-store/#cookie-maximum-name-value-pair-size
|
---|
7 | const maxNameValuePairSize = 4096
|
---|
8 |
|
---|
9 | module.exports = {
|
---|
10 | maxAttributeValueSize,
|
---|
11 | maxNameValuePairSize
|
---|
12 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.