mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-12-17 06:20:12 +01:00
Refactor to remove codeBlockAndSpanRanges helper.
This commit is contained in:
parent
c5f4a93cc7
commit
7efc2605b1
7 changed files with 96 additions and 128 deletions
|
|
@ -634,43 +634,6 @@ function addErrorContextForLine(onError, lines, lineIndex, lineNumber) {
|
||||||
}
|
}
|
||||||
module.exports.addErrorContextForLine = addErrorContextForLine;
|
module.exports.addErrorContextForLine = addErrorContextForLine;
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns an array of code block and span content ranges.
|
|
||||||
*
|
|
||||||
* @param {Object} params RuleParams instance.
|
|
||||||
* @param {Object} lineMetadata Line metadata object.
|
|
||||||
* @returns {number[][]} Array of ranges (lineIndex, columnIndex, length).
|
|
||||||
*/
|
|
||||||
module.exports.codeBlockAndSpanRanges = (params, lineMetadata) => {
|
|
||||||
const exclusions = [];
|
|
||||||
// Add code block ranges (excludes fences)
|
|
||||||
forEachLine(lineMetadata, (line, lineIndex, inCode, onFence) => {
|
|
||||||
if (inCode && !onFence) {
|
|
||||||
exclusions.push([ lineIndex, 0, line.length ]);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
// Add code span ranges (excludes ticks)
|
|
||||||
filterTokens(params, "inline", (token) => {
|
|
||||||
if (token.children.some((child) => child.type === "code_inline")) {
|
|
||||||
const tokenLines = params.lines.slice(token.map[0], token.map[1]);
|
|
||||||
forEachInlineCodeSpan(
|
|
||||||
tokenLines.join("\n"),
|
|
||||||
(code, lineIndex, columnIndex) => {
|
|
||||||
const codeLines = code.split(newLineRe);
|
|
||||||
for (const [ i, line ] of codeLines.entries()) {
|
|
||||||
exclusions.push([
|
|
||||||
token.lineNumber - 1 + lineIndex + i,
|
|
||||||
i ? 0 : columnIndex,
|
|
||||||
line.length
|
|
||||||
]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
return exclusions;
|
|
||||||
};
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Determines whether the specified range is within another range.
|
* Determines whether the specified range is within another range.
|
||||||
*
|
*
|
||||||
|
|
@ -1515,6 +1478,31 @@ function getDescendantsByType(parent, typePath) {
|
||||||
return tokens;
|
return tokens;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// eslint-disable-next-line jsdoc/valid-types
|
||||||
|
/** @typedef {readonly string[]} ReadonlyStringArray */
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the line/column/length exclusions for a Micromark token.
|
||||||
|
*
|
||||||
|
* @param {ReadonlyStringArray} lines File/string lines.
|
||||||
|
* @param {Token} token Micromark token.
|
||||||
|
* @returns {number[][]} Exclusions (line number, start column, length).
|
||||||
|
*/
|
||||||
|
function getExclusionsForToken(lines, token) {
|
||||||
|
const exclusions = [];
|
||||||
|
const { endColumn, endLine, startColumn, startLine } = token;
|
||||||
|
for (let lineNumber = startLine; lineNumber <= endLine; lineNumber++) {
|
||||||
|
const start = (lineNumber === startLine) ? startColumn : 1;
|
||||||
|
const end = (lineNumber === endLine) ? endColumn : lines[lineNumber - 1].length;
|
||||||
|
exclusions.push([
|
||||||
|
lineNumber,
|
||||||
|
start,
|
||||||
|
end - start + 1
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
return exclusions;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the heading level of a Micromark heading tokan.
|
* Gets the heading level of a Micromark heading tokan.
|
||||||
*
|
*
|
||||||
|
|
@ -1685,6 +1673,7 @@ module.exports = {
|
||||||
filterByPredicate,
|
filterByPredicate,
|
||||||
filterByTypes,
|
filterByTypes,
|
||||||
getDescendantsByType,
|
getDescendantsByType,
|
||||||
|
getExclusionsForToken,
|
||||||
getHeadingLevel,
|
getHeadingLevel,
|
||||||
getHeadingStyle,
|
getHeadingStyle,
|
||||||
getHeadingText,
|
getHeadingText,
|
||||||
|
|
@ -1722,8 +1711,6 @@ module.exports.set = (keyValuePairs) => {
|
||||||
};
|
};
|
||||||
module.exports.clear = () => map.clear();
|
module.exports.clear = () => map.clear();
|
||||||
|
|
||||||
module.exports.codeBlockAndSpanRanges =
|
|
||||||
() => map.get("codeBlockAndSpanRanges");
|
|
||||||
module.exports.flattenedLists =
|
module.exports.flattenedLists =
|
||||||
() => map.get("flattenedLists");
|
() => map.get("flattenedLists");
|
||||||
module.exports.lineMetadata =
|
module.exports.lineMetadata =
|
||||||
|
|
@ -2365,14 +2352,11 @@ function lintContent(
|
||||||
};
|
};
|
||||||
const lineMetadata =
|
const lineMetadata =
|
||||||
helpers.getLineMetadata(paramsBase);
|
helpers.getLineMetadata(paramsBase);
|
||||||
const codeBlockAndSpanRanges =
|
|
||||||
helpers.codeBlockAndSpanRanges(paramsBase, lineMetadata);
|
|
||||||
const flattenedLists =
|
const flattenedLists =
|
||||||
helpers.flattenLists(markdownitTokens);
|
helpers.flattenLists(markdownitTokens);
|
||||||
const referenceLinkImageData =
|
const referenceLinkImageData =
|
||||||
helpers.getReferenceLinkImageData(micromarkTokens);
|
helpers.getReferenceLinkImageData(micromarkTokens);
|
||||||
cache.set({
|
cache.set({
|
||||||
codeBlockAndSpanRanges,
|
|
||||||
flattenedLists,
|
flattenedLists,
|
||||||
lineMetadata,
|
lineMetadata,
|
||||||
referenceLinkImageData
|
referenceLinkImageData
|
||||||
|
|
@ -3826,7 +3810,7 @@ module.exports = {
|
||||||
|
|
||||||
|
|
||||||
const { addError, withinAnyRange } = __webpack_require__(/*! ../helpers */ "../helpers/helpers.js");
|
const { addError, withinAnyRange } = __webpack_require__(/*! ../helpers */ "../helpers/helpers.js");
|
||||||
const { filterByTypes, getDescendantsByType } = __webpack_require__(/*! ../helpers/micromark.cjs */ "../helpers/micromark.cjs");
|
const { filterByTypes, getDescendantsByType, getExclusionsForToken } = __webpack_require__(/*! ../helpers/micromark.cjs */ "../helpers/micromark.cjs");
|
||||||
|
|
||||||
const tabRe = /\t+/g;
|
const tabRe = /\t+/g;
|
||||||
|
|
||||||
|
|
@ -3870,20 +3854,12 @@ module.exports = {
|
||||||
return true;
|
return true;
|
||||||
});
|
});
|
||||||
for (const codeToken of codeTokens) {
|
for (const codeToken of codeTokens) {
|
||||||
const codeFenced = (codeToken.type === "codeFenced");
|
const exclusionsForToken = getExclusionsForToken(params.lines, codeToken);
|
||||||
const startLine = codeToken.startLine + (codeFenced ? 1 : 0);
|
if (codeToken.type === "codeFenced") {
|
||||||
const endLine = codeToken.endLine - (codeFenced ? 1 : 0);
|
exclusionsForToken.pop();
|
||||||
for (let lineNumber = startLine; lineNumber <= endLine; lineNumber++) {
|
exclusionsForToken.shift();
|
||||||
const startColumn =
|
|
||||||
(lineNumber === codeToken.startLine) ? codeToken.startColumn : 1;
|
|
||||||
const endColumn =
|
|
||||||
(lineNumber === codeToken.endLine) ? codeToken.endColumn : params.lines[lineNumber - 1].length;
|
|
||||||
exclusions.push([
|
|
||||||
lineNumber,
|
|
||||||
startColumn,
|
|
||||||
endColumn - startColumn + 1
|
|
||||||
]);
|
|
||||||
}
|
}
|
||||||
|
exclusions.push(...exclusionsForToken);
|
||||||
}
|
}
|
||||||
for (let lineIndex = 0; lineIndex < params.lines.length; lineIndex++) {
|
for (let lineIndex = 0; lineIndex < params.lines.length; lineIndex++) {
|
||||||
const line = params.lines[lineIndex];
|
const line = params.lines[lineIndex];
|
||||||
|
|
@ -3924,8 +3900,8 @@ module.exports = {
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
const { addError, forEachLine, withinAnyRange } = __webpack_require__(/*! ../helpers */ "../helpers/helpers.js");
|
const { addError, withinAnyRange } = __webpack_require__(/*! ../helpers */ "../helpers/helpers.js");
|
||||||
const { codeBlockAndSpanRanges, lineMetadata } = __webpack_require__(/*! ./cache */ "../lib/cache.js");
|
const { addRangeToSet, getExclusionsForToken, filterByTypes } = __webpack_require__(/*! ../helpers/micromark.cjs */ "../helpers/micromark.cjs");
|
||||||
|
|
||||||
const reversedLinkRe =
|
const reversedLinkRe =
|
||||||
/(^|[^\\])\(([^()]+)\)\[([^\]^][^\]]*)\](?!\()/g;
|
/(^|[^\\])\(([^()]+)\)\[([^\]^][^\]]*)\](?!\()/g;
|
||||||
|
|
@ -3936,11 +3912,19 @@ module.exports = {
|
||||||
"names": [ "MD011", "no-reversed-links" ],
|
"names": [ "MD011", "no-reversed-links" ],
|
||||||
"description": "Reversed link syntax",
|
"description": "Reversed link syntax",
|
||||||
"tags": [ "links" ],
|
"tags": [ "links" ],
|
||||||
"parser": "none",
|
"parser": "micromark",
|
||||||
"function": function MD011(params, onError) {
|
"function": function MD011(params, onError) {
|
||||||
const exclusions = codeBlockAndSpanRanges();
|
const { tokens } = params.parsers.micromark;
|
||||||
forEachLine(lineMetadata(), (line, lineIndex, inCode, onFence) => {
|
const codeBlockLineNumbers = new Set();
|
||||||
if (!inCode && !onFence) {
|
for (const codeBlock of filterByTypes(tokens, [ "codeFenced", "codeIndented" ])) {
|
||||||
|
addRangeToSet(codeBlockLineNumbers, codeBlock.startLine, codeBlock.endLine);
|
||||||
|
}
|
||||||
|
const exclusions = [];
|
||||||
|
for (const codeText of filterByTypes(tokens, [ "codeText" ])) {
|
||||||
|
exclusions.push(...getExclusionsForToken(params.lines, codeText));
|
||||||
|
}
|
||||||
|
for (const [ lineIndex, line ] of params.lines.entries()) {
|
||||||
|
if (!codeBlockLineNumbers.has(lineIndex + 1)) {
|
||||||
let match = null;
|
let match = null;
|
||||||
while ((match = reversedLinkRe.exec(line)) !== null) {
|
while ((match = reversedLinkRe.exec(line)) !== null) {
|
||||||
const [ reversedLink, preChar, linkText, linkDestination ] = match;
|
const [ reversedLink, preChar, linkText, linkDestination ] = match;
|
||||||
|
|
@ -3949,7 +3933,7 @@ module.exports = {
|
||||||
if (
|
if (
|
||||||
!linkText.endsWith("\\") &&
|
!linkText.endsWith("\\") &&
|
||||||
!linkDestination.endsWith("\\") &&
|
!linkDestination.endsWith("\\") &&
|
||||||
!withinAnyRange(exclusions, lineIndex, index, length)
|
!withinAnyRange(exclusions, lineIndex + 1, index, length)
|
||||||
) {
|
) {
|
||||||
addError(
|
addError(
|
||||||
onError,
|
onError,
|
||||||
|
|
@ -3966,7 +3950,7 @@ module.exports = {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -622,43 +622,6 @@ function addErrorContextForLine(onError, lines, lineIndex, lineNumber) {
|
||||||
}
|
}
|
||||||
module.exports.addErrorContextForLine = addErrorContextForLine;
|
module.exports.addErrorContextForLine = addErrorContextForLine;
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns an array of code block and span content ranges.
|
|
||||||
*
|
|
||||||
* @param {Object} params RuleParams instance.
|
|
||||||
* @param {Object} lineMetadata Line metadata object.
|
|
||||||
* @returns {number[][]} Array of ranges (lineIndex, columnIndex, length).
|
|
||||||
*/
|
|
||||||
module.exports.codeBlockAndSpanRanges = (params, lineMetadata) => {
|
|
||||||
const exclusions = [];
|
|
||||||
// Add code block ranges (excludes fences)
|
|
||||||
forEachLine(lineMetadata, (line, lineIndex, inCode, onFence) => {
|
|
||||||
if (inCode && !onFence) {
|
|
||||||
exclusions.push([ lineIndex, 0, line.length ]);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
// Add code span ranges (excludes ticks)
|
|
||||||
filterTokens(params, "inline", (token) => {
|
|
||||||
if (token.children.some((child) => child.type === "code_inline")) {
|
|
||||||
const tokenLines = params.lines.slice(token.map[0], token.map[1]);
|
|
||||||
forEachInlineCodeSpan(
|
|
||||||
tokenLines.join("\n"),
|
|
||||||
(code, lineIndex, columnIndex) => {
|
|
||||||
const codeLines = code.split(newLineRe);
|
|
||||||
for (const [ i, line ] of codeLines.entries()) {
|
|
||||||
exclusions.push([
|
|
||||||
token.lineNumber - 1 + lineIndex + i,
|
|
||||||
i ? 0 : columnIndex,
|
|
||||||
line.length
|
|
||||||
]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
return exclusions;
|
|
||||||
};
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Determines whether the specified range is within another range.
|
* Determines whether the specified range is within another range.
|
||||||
*
|
*
|
||||||
|
|
|
||||||
|
|
@ -333,6 +333,31 @@ function getDescendantsByType(parent, typePath) {
|
||||||
return tokens;
|
return tokens;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// eslint-disable-next-line jsdoc/valid-types
|
||||||
|
/** @typedef {readonly string[]} ReadonlyStringArray */
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the line/column/length exclusions for a Micromark token.
|
||||||
|
*
|
||||||
|
* @param {ReadonlyStringArray} lines File/string lines.
|
||||||
|
* @param {Token} token Micromark token.
|
||||||
|
* @returns {number[][]} Exclusions (line number, start column, length).
|
||||||
|
*/
|
||||||
|
function getExclusionsForToken(lines, token) {
|
||||||
|
const exclusions = [];
|
||||||
|
const { endColumn, endLine, startColumn, startLine } = token;
|
||||||
|
for (let lineNumber = startLine; lineNumber <= endLine; lineNumber++) {
|
||||||
|
const start = (lineNumber === startLine) ? startColumn : 1;
|
||||||
|
const end = (lineNumber === endLine) ? endColumn : lines[lineNumber - 1].length;
|
||||||
|
exclusions.push([
|
||||||
|
lineNumber,
|
||||||
|
start,
|
||||||
|
end - start + 1
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
return exclusions;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the heading level of a Micromark heading tokan.
|
* Gets the heading level of a Micromark heading tokan.
|
||||||
*
|
*
|
||||||
|
|
@ -503,6 +528,7 @@ module.exports = {
|
||||||
filterByPredicate,
|
filterByPredicate,
|
||||||
filterByTypes,
|
filterByTypes,
|
||||||
getDescendantsByType,
|
getDescendantsByType,
|
||||||
|
getExclusionsForToken,
|
||||||
getHeadingLevel,
|
getHeadingLevel,
|
||||||
getHeadingStyle,
|
getHeadingStyle,
|
||||||
getHeadingText,
|
getHeadingText,
|
||||||
|
|
|
||||||
|
|
@ -11,8 +11,6 @@ module.exports.set = (keyValuePairs) => {
|
||||||
};
|
};
|
||||||
module.exports.clear = () => map.clear();
|
module.exports.clear = () => map.clear();
|
||||||
|
|
||||||
module.exports.codeBlockAndSpanRanges =
|
|
||||||
() => map.get("codeBlockAndSpanRanges");
|
|
||||||
module.exports.flattenedLists =
|
module.exports.flattenedLists =
|
||||||
() => map.get("flattenedLists");
|
() => map.get("flattenedLists");
|
||||||
module.exports.lineMetadata =
|
module.exports.lineMetadata =
|
||||||
|
|
|
||||||
|
|
@ -596,14 +596,11 @@ function lintContent(
|
||||||
};
|
};
|
||||||
const lineMetadata =
|
const lineMetadata =
|
||||||
helpers.getLineMetadata(paramsBase);
|
helpers.getLineMetadata(paramsBase);
|
||||||
const codeBlockAndSpanRanges =
|
|
||||||
helpers.codeBlockAndSpanRanges(paramsBase, lineMetadata);
|
|
||||||
const flattenedLists =
|
const flattenedLists =
|
||||||
helpers.flattenLists(markdownitTokens);
|
helpers.flattenLists(markdownitTokens);
|
||||||
const referenceLinkImageData =
|
const referenceLinkImageData =
|
||||||
helpers.getReferenceLinkImageData(micromarkTokens);
|
helpers.getReferenceLinkImageData(micromarkTokens);
|
||||||
cache.set({
|
cache.set({
|
||||||
codeBlockAndSpanRanges,
|
|
||||||
flattenedLists,
|
flattenedLists,
|
||||||
lineMetadata,
|
lineMetadata,
|
||||||
referenceLinkImageData
|
referenceLinkImageData
|
||||||
|
|
|
||||||
20
lib/md010.js
20
lib/md010.js
|
|
@ -3,7 +3,7 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
const { addError, withinAnyRange } = require("../helpers");
|
const { addError, withinAnyRange } = require("../helpers");
|
||||||
const { filterByTypes, getDescendantsByType } = require("../helpers/micromark.cjs");
|
const { filterByTypes, getDescendantsByType, getExclusionsForToken } = require("../helpers/micromark.cjs");
|
||||||
|
|
||||||
const tabRe = /\t+/g;
|
const tabRe = /\t+/g;
|
||||||
|
|
||||||
|
|
@ -47,20 +47,12 @@ module.exports = {
|
||||||
return true;
|
return true;
|
||||||
});
|
});
|
||||||
for (const codeToken of codeTokens) {
|
for (const codeToken of codeTokens) {
|
||||||
const codeFenced = (codeToken.type === "codeFenced");
|
const exclusionsForToken = getExclusionsForToken(params.lines, codeToken);
|
||||||
const startLine = codeToken.startLine + (codeFenced ? 1 : 0);
|
if (codeToken.type === "codeFenced") {
|
||||||
const endLine = codeToken.endLine - (codeFenced ? 1 : 0);
|
exclusionsForToken.pop();
|
||||||
for (let lineNumber = startLine; lineNumber <= endLine; lineNumber++) {
|
exclusionsForToken.shift();
|
||||||
const startColumn =
|
|
||||||
(lineNumber === codeToken.startLine) ? codeToken.startColumn : 1;
|
|
||||||
const endColumn =
|
|
||||||
(lineNumber === codeToken.endLine) ? codeToken.endColumn : params.lines[lineNumber - 1].length;
|
|
||||||
exclusions.push([
|
|
||||||
lineNumber,
|
|
||||||
startColumn,
|
|
||||||
endColumn - startColumn + 1
|
|
||||||
]);
|
|
||||||
}
|
}
|
||||||
|
exclusions.push(...exclusionsForToken);
|
||||||
}
|
}
|
||||||
for (let lineIndex = 0; lineIndex < params.lines.length; lineIndex++) {
|
for (let lineIndex = 0; lineIndex < params.lines.length; lineIndex++) {
|
||||||
const line = params.lines[lineIndex];
|
const line = params.lines[lineIndex];
|
||||||
|
|
|
||||||
24
lib/md011.js
24
lib/md011.js
|
|
@ -2,8 +2,8 @@
|
||||||
|
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
const { addError, forEachLine, withinAnyRange } = require("../helpers");
|
const { addError, withinAnyRange } = require("../helpers");
|
||||||
const { codeBlockAndSpanRanges, lineMetadata } = require("./cache");
|
const { addRangeToSet, getExclusionsForToken, filterByTypes } = require("../helpers/micromark.cjs");
|
||||||
|
|
||||||
const reversedLinkRe =
|
const reversedLinkRe =
|
||||||
/(^|[^\\])\(([^()]+)\)\[([^\]^][^\]]*)\](?!\()/g;
|
/(^|[^\\])\(([^()]+)\)\[([^\]^][^\]]*)\](?!\()/g;
|
||||||
|
|
@ -14,11 +14,19 @@ module.exports = {
|
||||||
"names": [ "MD011", "no-reversed-links" ],
|
"names": [ "MD011", "no-reversed-links" ],
|
||||||
"description": "Reversed link syntax",
|
"description": "Reversed link syntax",
|
||||||
"tags": [ "links" ],
|
"tags": [ "links" ],
|
||||||
"parser": "none",
|
"parser": "micromark",
|
||||||
"function": function MD011(params, onError) {
|
"function": function MD011(params, onError) {
|
||||||
const exclusions = codeBlockAndSpanRanges();
|
const { tokens } = params.parsers.micromark;
|
||||||
forEachLine(lineMetadata(), (line, lineIndex, inCode, onFence) => {
|
const codeBlockLineNumbers = new Set();
|
||||||
if (!inCode && !onFence) {
|
for (const codeBlock of filterByTypes(tokens, [ "codeFenced", "codeIndented" ])) {
|
||||||
|
addRangeToSet(codeBlockLineNumbers, codeBlock.startLine, codeBlock.endLine);
|
||||||
|
}
|
||||||
|
const exclusions = [];
|
||||||
|
for (const codeText of filterByTypes(tokens, [ "codeText" ])) {
|
||||||
|
exclusions.push(...getExclusionsForToken(params.lines, codeText));
|
||||||
|
}
|
||||||
|
for (const [ lineIndex, line ] of params.lines.entries()) {
|
||||||
|
if (!codeBlockLineNumbers.has(lineIndex + 1)) {
|
||||||
let match = null;
|
let match = null;
|
||||||
while ((match = reversedLinkRe.exec(line)) !== null) {
|
while ((match = reversedLinkRe.exec(line)) !== null) {
|
||||||
const [ reversedLink, preChar, linkText, linkDestination ] = match;
|
const [ reversedLink, preChar, linkText, linkDestination ] = match;
|
||||||
|
|
@ -27,7 +35,7 @@ module.exports = {
|
||||||
if (
|
if (
|
||||||
!linkText.endsWith("\\") &&
|
!linkText.endsWith("\\") &&
|
||||||
!linkDestination.endsWith("\\") &&
|
!linkDestination.endsWith("\\") &&
|
||||||
!withinAnyRange(exclusions, lineIndex, index, length)
|
!withinAnyRange(exclusions, lineIndex + 1, index, length)
|
||||||
) {
|
) {
|
||||||
addError(
|
addError(
|
||||||
onError,
|
onError,
|
||||||
|
|
@ -44,6 +52,6 @@ module.exports = {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue