UNPKG

tf2-item-format

Version:
16 lines 485 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = default_1; /** * Matches quality from name. * @param {string} name * @return {string} quality */ function default_1(name) { // Does not include strange and vintage for exception reasons. const match = name.match(/(Normal|Genuine|Unique|Unusual|Self-Made|Collector's) /) || []; const [, quality] = match; return quality; } //# sourceMappingURL=matchQuality.js.map