aes70 2.0.13 → 2.0.14
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
|
@@ -15662,14 +15662,14 @@
|
|
|
15662
15662
|
*/
|
|
15663
15663
|
|
|
15664
15664
|
function OcaInterval(DT) {
|
|
15665
|
-
return
|
|
15665
|
+
return Struct(
|
|
15666
15666
|
{
|
|
15667
15667
|
Min: DT,
|
|
15668
15668
|
Max: DT,
|
|
15669
15669
|
Bounds: OcaIntervalBounds$1,
|
|
15670
15670
|
},
|
|
15671
15671
|
OcaInterval$1
|
|
15672
|
-
)
|
|
15672
|
+
);
|
|
15673
15673
|
}
|
|
15674
15674
|
|
|
15675
15675
|
/*
|
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
|
}
|