(target: string, value: string)
| 212 | } |
| 213 | |
| 214 | function isSubsequence(target: string, value: string) { |
| 215 | let index = 0; |
| 216 | for (const character of target) { |
| 217 | if (character === value[index]) index++; |
| 218 | } |
| 219 | return index === value.length; |
| 220 | } |
| 221 | |
| 222 | function sameVercelModel(current: ExistingModel, desired: SyncedModel) { |
| 223 | const desiredModel = desired as ExistingModel; |