openatc-components 0.4.33 → 0.4.34
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/package.json
CHANGED
|
@@ -1196,8 +1196,10 @@ export default {
|
|
|
1196
1196
|
for (let i = 0; i < ringsequence[1].length; i += minLength) {
|
|
1197
1197
|
resultArr.push(ringsequence[1].slice(i, i + minLength))
|
|
1198
1198
|
}
|
|
1199
|
-
|
|
1200
|
-
|
|
1199
|
+
if (ringsequence[2]) {
|
|
1200
|
+
for (let k = 0; k < ringsequence[2].length; k += minLength) {
|
|
1201
|
+
resultArrThree.push(ringsequence[2].slice(k, k + minLength))
|
|
1202
|
+
}
|
|
1201
1203
|
}
|
|
1202
1204
|
}
|
|
1203
1205
|
this.patternInfo = []
|