Skip to content

Commit 977605c

Browse files
erikyojohnhooks
andauthored
@johnhooks review suggestions
Co-authored-by: John Hooks <[email protected]>
1 parent f4366dd commit 977605c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/mocompiler.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export default function (table) {
2121
* @return {{[key: string]: string}} The prepared header
2222
*/
2323
function prepareMoHeaders (headers) {
24-
return Object.keys(headers).reduce((/** @type {{[key: string]: string}} */ result, key) => {
24+
return Object.keys(headers).reduce((/** @type {Record<string, string>} */ result, key) => {
2525
const lowerKey = key.toLowerCase();
2626

2727
if (HEADERS.has(lowerKey)) {

0 commit comments

Comments
 (0)