I'm reading a js file for transforming of one spatial model(.gml). from a specific projection to another. What does ":::" mean in the code as follows?
_getTransformation(projectionFrom, projectionTo) {
let cacheKey = `${projectionFrom}:::${projectionTo}`;
if (!this.transformations[cacheKey]) {
let from = this._getProjection(projectionFrom);
let to = this._getProjection(projectionTo);
this.transformations[cacheKey] = proj4(from, to);
}
return this.transformations[cacheKey];
}