UNPKG

@shift-code/cli

Version:

Redeem Gearbox SHiFT codes automatically

29 lines 857 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.PlatformName = exports.GameName = void 0; exports.isGameName = isGameName; exports.isPlatformName = isPlatformName; exports.GameName = { 'bl1': 'Borderlands 1', 'bl2': 'Borderlands 2', 'bl3': 'Borderlands 3', 'bl4': 'Borderlands 4', 'tps': 'Borderlands: The Pre-Sequel', 'gf': 'Godfall', 'ttw': 'Tiny Tina\'s Wonderlands', 'ntb': 'New Tales of the Borderlands' }; exports.PlatformName = { 'steam': 'Steam', 'xbox': 'Xbox', 'psn': 'Playstation', 'epic': 'Epic Games', 'stadia': 'Stadia' }; function isGameName(name) { return typeof name === "string" && name in exports.GameName; } function isPlatformName(name) { return typeof name === "string" && name in exports.PlatformName; } //# sourceMappingURL=names.js.map