* Adds the region to the end of a cloned copy of the supplied region * array.
(regions: IRegion[], region: IRegion)
| 227 | * array. |
| 228 | */ |
| 229 | public static add(regions: IRegion[], region: IRegion) { |
| 230 | const copy = regions.slice(); |
| 231 | copy.push(region); |
| 232 | return copy; |
| 233 | } |
| 234 | |
| 235 | /** |
| 236 | * Replaces the region at the end of a cloned copy of the supplied region |
no outgoing calls
no test coverage detected