Best JavaScript code snippet using wpt
content_disposition.js
Source:content_disposition.js
...7 let needsEncodingFixup = true;8 let tmp = toParamRegExp('filename\\*', 'i').exec(contentDisposition);9 if (tmp) {10 tmp = tmp[1];11 let filename = rfc2616unquote(tmp);12 filename = unescape(filename);13 filename = rfc5987decode(filename);14 filename = rfc2047decode(filename);15 return fixupEncoding(filename);16 }17 tmp = rfc2231getparam(contentDisposition);18 if (tmp) {19 let filename = rfc2047decode(tmp);20 return fixupEncoding(filename);21 }22 tmp = toParamRegExp('filename', 'i').exec(contentDisposition);23 if (tmp) {24 tmp = tmp[1];25 let filename = rfc2616unquote(tmp);26 filename = rfc2047decode(filename);27 return fixupEncoding(filename);28 }29 function toParamRegExp(attributePattern, flags) {30 return new RegExp('(?:^|;)\\s*' + attributePattern + '\\s*=\\s*' + '(' + '[^";\\s][^;\\s]*' + '|' + '"(?:[^"\\\\]|\\\\"?)+"?' + ')', flags);31 }32 function textdecode(encoding, value) {33 if (encoding) {34 if (!/^[\x00-\xFF]+$/.test(value)) {35 return value;36 }37 try {38 let decoder = new TextDecoder(encoding, {39 fatal: true40 });41 let bytes = Array.from(value, function (ch) {42 return ch.charCodeAt(0) & 0xFF;43 });44 value = decoder.decode(new Uint8Array(bytes));45 needsEncodingFixup = false;46 } catch (e) {47 if (/^utf-?8$/i.test(encoding)) {48 try {49 value = decodeURIComponent(escape(value));50 needsEncodingFixup = false;51 } catch (err) {}52 }53 }54 }55 return value;56 }57 function fixupEncoding(value) {58 if (needsEncodingFixup && /[\x80-\xff]/.test(value)) {59 value = textdecode('utf-8', value);60 if (needsEncodingFixup) {61 value = textdecode('iso-8859-1', value);62 }63 }64 return value;65 }66 function rfc2231getparam(contentDisposition) {67 let matches = [],68 match;69 let iter = toParamRegExp('filename\\*((?!0\\d)\\d+)(\\*?)', 'ig');70 while ((match = iter.exec(contentDisposition)) !== null) {71 let [, n, quot, part] = match;72 n = parseInt(n, 10);73 if (n in matches) {74 if (n === 0) {75 break;76 }77 continue;78 }79 matches[n] = [quot, part];80 }81 let parts = [];82 for (let n = 0; n < matches.length; ++n) {83 if (!(n in matches)) {84 break;85 }86 let [quot, part] = matches[n];87 part = rfc2616unquote(part);88 if (quot) {89 part = unescape(part);90 if (n === 0) {91 part = rfc5987decode(part);92 }93 }94 parts.push(part);95 }96 return parts.join('');97 }98 function rfc2616unquote(value) {99 if (value.startsWith('"')) {100 let parts = value.slice(1).split('\\"');101 for (let i = 0; i < parts.length; ++i) {102 let quotindex = parts[i].indexOf('"');103 if (quotindex !== -1) {104 parts[i] = parts[i].slice(0, quotindex);105 parts.length = i + 1;106 }107 parts[i] = parts[i].replace(/\\(.)/g, '$1');108 }109 value = parts.join('"');110 }111 return value;112 }...
Using AI Code Generation
1var wptools = require('wptools');2var str = 'foo%20bar';3var unquoted = wptools.rfc2616unquote(str);4console.log(unquoted);5var str = 'foo%20bar';6var unquoted = wptools.rfc2616unquote(str);7console.log(unquoted);8var wptools = require('wptools');9var str = 'foo%20bar';10var unquoted = wptools.rfc2616unquote(str);11console.log(unquoted);12var str = 'foo%20bar';13var unquoted = wptools.rfc2616unquote(str);14console.log(unquoted);15wptools.rfc2616unquote(str)
Using AI Code Generation
1var wptutils = require('wptutils');2var val = "foo";3var val2 = wptutils.rfc2616unquote(val);4console.log(val2);5var wptutils = require('wptutils');6var val = "foo";7var val2 = wptutils.rfc2616unquote(val);8console.log(val2);9var wptutils = require('wptutils');10var val = "foo";11var val2 = wptutils.rfc2616quote(val);12console.log(val2);13var wptutils = require('wptutils');14var val = "foo";15var val2 = wptutils.rfc2616unquote(val);16console.log(val2);17var wptutils = require('wptutils');18var val = "foo";19var val2 = wptutils.rfc2616unquote(val);20console.log(val2);21var wptutils = require('wptutils');22var val = "foo";23var val2 = wptutils.rfc2616unquote(val);24console.log(val2);
Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!