@sveltejs/adapter-netlify 2.0.7 → 2.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/files/esm/serverless.js +4 -8
- package/files/esm/shims.js +882 -167
- package/package.json +6 -6
package/files/esm/serverless.js
CHANGED
|
@@ -24,11 +24,7 @@ import 'string_decoder';
|
|
|
24
24
|
import 'crypto';
|
|
25
25
|
import 'diagnostics_channel';
|
|
26
26
|
|
|
27
|
-
var
|
|
28
|
-
var setCookie = {
|
|
29
|
-
get exports(){ return setCookieExports; },
|
|
30
|
-
set exports(v){ setCookieExports = v; },
|
|
31
|
-
};
|
|
27
|
+
var setCookie = {exports: {}};
|
|
32
28
|
|
|
33
29
|
var defaultParseOptions = {
|
|
34
30
|
decodeValues: true,
|
|
@@ -251,9 +247,9 @@ function splitCookiesString(cookiesString) {
|
|
|
251
247
|
}
|
|
252
248
|
|
|
253
249
|
setCookie.exports = parse;
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
var splitCookiesString_1 =
|
|
250
|
+
setCookie.exports.parse = parse;
|
|
251
|
+
setCookie.exports.parseString = parseString;
|
|
252
|
+
var splitCookiesString_1 = setCookie.exports.splitCookiesString = splitCookiesString;
|
|
257
253
|
|
|
258
254
|
/**
|
|
259
255
|
* Splits headers into two categories: single value and multi value
|