Sha256: 282d892fd6dbc7b1eef727beeb52c1f2b8091e57cf7f9a337b469e091eb28726
Contents?: true
Size: 445 Bytes
Versions: 20
Compression:
Stored size: 445 Bytes
Contents
"use strict"; const enumerationValues = new Set(["subtitles", "captions", "descriptions", "chapters", "metadata"]); 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 TextTrackKind`); } return string; };
Version data entries
20 entries across 20 versions & 1 rubygems