Sha256: 3a76a4b04fe3193d4b4857d8b1c4eff2a391f1f0767ab0985a94ef3105926e1c
Contents?: true
Size: 409 Bytes
Versions: 20
Compression:
Stored size: 409 Bytes
Contents
"use strict"; const enumerationValues = new Set(["", "maybe", "probably"]); exports.enumerationValues = enumerationValues; exports.convert = function convert(value, { context = "The provided value" } = {}) { const string = `${value}`; if (!enumerationValues.has(string)) { throw new TypeError(`${context} '${string}' is not a valid enumeration value for CanPlayTypeResult`); } return string; };
Version data entries
20 entries across 20 versions & 1 rubygems