aes70 2.0.6 → 2.0.7
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/dist/AES70.es5.js +2 -2
- package/package.json +1 -1
- package/src/OCP1/OcaInterval.js +2 -2
package/dist/AES70.es5.js
CHANGED
|
@@ -15658,14 +15658,14 @@
|
|
|
15658
15658
|
*/
|
|
15659
15659
|
|
|
15660
15660
|
function OcaInterval(DT) {
|
|
15661
|
-
return
|
|
15661
|
+
return Struct(
|
|
15662
15662
|
{
|
|
15663
15663
|
Min: DT,
|
|
15664
15664
|
Max: DT,
|
|
15665
15665
|
Bounds: OcaIntervalBounds$1,
|
|
15666
15666
|
},
|
|
15667
15667
|
OcaInterval$1
|
|
15668
|
-
)
|
|
15668
|
+
);
|
|
15669
15669
|
}
|
|
15670
15670
|
|
|
15671
15671
|
/*
|
package/package.json
CHANGED
package/src/OCP1/OcaInterval.js
CHANGED
|
@@ -6,12 +6,12 @@ import { Struct } from './Struct.js';
|
|
|
6
6
|
import { OcaInterval as type } from '../types/OcaInterval.js';
|
|
7
7
|
|
|
8
8
|
export function OcaInterval(DT) {
|
|
9
|
-
return
|
|
9
|
+
return Struct(
|
|
10
10
|
{
|
|
11
11
|
Min: DT,
|
|
12
12
|
Max: DT,
|
|
13
13
|
Bounds: OcaIntervalBounds,
|
|
14
14
|
},
|
|
15
15
|
type
|
|
16
|
-
)
|
|
16
|
+
);
|
|
17
17
|
}
|