@visisoft/staticland
Advanced tools
Comparing version 0.1.14 to 0.1.15
Changelog | ||
========= | ||
0.1.15 | ||
------ | ||
- fix: Either no longer based on a unique Symbol but rather on a unique string. This should make Either compatible with a differently loaded staticland library. | ||
0.1.11 | ||
@@ -4,0 +9,0 @@ ------ |
/* @license Apache-2.0 | ||
@visisoft/staticland v.0.1.14 visisoft.de | ||
(Build date: 1/30/2021 - 7:57:30 PM) | ||
@visisoft/staticland v.0.1.15 visisoft.de | ||
(Build date: 2/12/2021 - 12:19:42 AM) | ||
*/ | ||
@@ -19,3 +19,6 @@ 'use strict'; | ||
const | ||
missingEitherSide = Symbol('missingEitherSide'), | ||
// Don't attempt to use a Symbol here. | ||
// That would make Eithers created by right(of) and left unusable | ||
// with any differently (other path, other version) loaded staticland library | ||
missingEitherSide = '__de/@visisoft/staticland/either/missingEitherSide__', | ||
@@ -22,0 +25,0 @@ // Creation // |
/* @license Apache-2.0 | ||
@visisoft/staticland v.0.1.14 visisoft.de | ||
(Build date: 1/30/2021 - 7:57:30 PM) | ||
@visisoft/staticland v.0.1.15 visisoft.de | ||
(Build date: 2/12/2021 - 12:19:42 AM) | ||
*/ | ||
@@ -5,0 +5,0 @@ 'use strict'; |
/* @license Apache-2.0 | ||
@visisoft/staticland v.0.1.14 visisoft.de | ||
(Build date: 1/30/2021 - 7:57:30 PM) | ||
@visisoft/staticland v.0.1.15 visisoft.de | ||
(Build date: 2/12/2021 - 12:19:42 AM) | ||
*/ | ||
@@ -5,0 +5,0 @@ 'use strict'; |
/* @license Apache-2.0 | ||
@visisoft/staticland v.0.1.14 visisoft.de | ||
(Build date: 1/30/2021 - 7:57:30 PM) | ||
@visisoft/staticland v.0.1.15 visisoft.de | ||
(Build date: 2/12/2021 - 12:19:42 AM) | ||
*/ | ||
@@ -417,3 +417,6 @@ 'use strict'; | ||
const | ||
missingEitherSide = Symbol('missingEitherSide'), | ||
// Don't attempt to use a Symbol here. | ||
// That would make Eithers created by right(of) and left unusable | ||
// with any differently (other path, other version) loaded staticland library | ||
missingEitherSide = '__de/@visisoft/staticland/either/missingEitherSide__', | ||
@@ -420,0 +423,0 @@ // Creation // |
/* @license Apache-2.0 | ||
@visisoft/staticland v.0.1.14 visisoft.de | ||
(Build date: 1/30/2021 - 7:57:30 PM) | ||
@visisoft/staticland v.0.1.15 visisoft.de | ||
(Build date: 2/12/2021 - 12:19:42 AM) | ||
*/ | ||
@@ -19,3 +19,6 @@ 'use strict'; | ||
const | ||
missingEitherSide = Symbol('missingEitherSide'), | ||
// Don't attempt to use a Symbol here. | ||
// That would make Eithers created by right(of) and left unusable | ||
// with any differently (other path, other version) loaded staticland library | ||
missingEitherSide = '__de/@visisoft/staticland/either/missingEitherSide__', | ||
@@ -22,0 +25,0 @@ // Creation // |
@@ -70,3 +70,3 @@ { | ||
"type": "module", | ||
"version": "0.1.14" | ||
"version": "0.1.15" | ||
} |
@@ -11,3 +11,6 @@ /** | ||
const | ||
missingEitherSide = Symbol('missingEitherSide'), | ||
// Don't attempt to use a Symbol here. | ||
// That would make Eithers created by right(of) and left unusable | ||
// with any differently (other path, other version) loaded staticland library | ||
missingEitherSide = '__de/@visisoft/staticland/either/missingEitherSide__', | ||
@@ -14,0 +17,0 @@ // Creation // |
78945
1669