We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f4366dd commit 977605cCopy full SHA for 977605c
src/mocompiler.js
@@ -21,7 +21,7 @@ export default function (table) {
21
* @return {{[key: string]: string}} The prepared header
22
*/
23
function prepareMoHeaders (headers) {
24
- return Object.keys(headers).reduce((/** @type {{[key: string]: string}} */ result, key) => {
+ return Object.keys(headers).reduce((/** @type {Record<string, string>} */ result, key) => {
25
const lowerKey = key.toLowerCase();
26
27
if (HEADERS.has(lowerKey)) {
0 commit comments