Sha256: a5cb8c77373fb2b9965433d54f6509f452a4aef422836192db807f926d6bd4d6
Contents?: true
Size: 474 Bytes
Versions: 26
Compression:
Stored size: 474 Bytes
Contents
"use strict"; const enumerationValues = new Set(["", "arraybuffer", "blob", "document", "json", "text"]); exports.enumerationValues = enumerationValues; exports.convert = (globalObject, value, { context = "The provided value" } = {}) => { const string = `${value}`; if (!enumerationValues.has(string)) { throw new globalObject.TypeError( `${context} '${string}' is not a valid enumeration value for XMLHttpRequestResponseType` ); } return string; };
Version data entries
26 entries across 26 versions & 1 rubygems