UNPKG

rap-react

Version:

To make it easy for you to get started with GitLab, here's a list of recommended next steps.

25 lines (24 loc) 470 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.GetBrandName = void 0; const GetBrandName = brandId => { let brandName = ""; switch (brandId) { //TODO fill more case "SDI": brandName = "Sonic"; case "BWW": brandName = "BWW"; case "JJ": brandName = "JJ"; case "ARB": default: { brandName = "Arby's"; } } return brandName; }; exports.GetBrandName = GetBrandName;