replay-viewer
Version:
Rocket League replay viewer React component and tooling
9 lines • 402 B
JavaScript
import { CAR_SUFFIX, GROUP_SUFFIX } from "../../constants/gameObjectNames";
import { hashCode } from "../../utils/hashCode";
export var getCarName = function (playerName) {
return "".concat(hashCode(playerName)).concat(CAR_SUFFIX);
};
export var getGroupName = function (playerName) {
return "".concat(hashCode(playerName)).concat(GROUP_SUFFIX);
};
//# sourceMappingURL=playerNameGetters.js.map