@next-core/brick-kit 2.127.3 → 2.128.0
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/CHANGELOG.md +11 -0
- package/dist/index.bundle.js +6 -2
- package/dist/index.bundle.js.map +1 -1
- package/dist/index.esm.js +6 -2
- package/dist/index.esm.js.map +1 -1
- package/package.json +2 -2
package/dist/index.esm.js
CHANGED
|
@@ -1636,10 +1636,14 @@ function getIndividualGlobal(variableName, _ref) {
|
|
|
1636
1636
|
case "location":
|
|
1637
1637
|
return collectCoverage ? {
|
|
1638
1638
|
href: "http://localhost:3000/functions/test",
|
|
1639
|
-
origin: "http://localhost:3000"
|
|
1639
|
+
origin: "http://localhost:3000",
|
|
1640
|
+
host: "localhost:3000",
|
|
1641
|
+
hostname: "localhost"
|
|
1640
1642
|
} : {
|
|
1641
1643
|
href: location.href,
|
|
1642
|
-
origin: location.origin
|
|
1644
|
+
origin: location.origin,
|
|
1645
|
+
host: location.host,
|
|
1646
|
+
hostname: location.hostname
|
|
1643
1647
|
};
|
|
1644
1648
|
}
|
|
1645
1649
|
}
|