function isMissingDocInfo()

in src/util.js [22:33]


function isMissingDocInfo(body) {
    if (!body) {
        return true;
    }
    const docOptions = [
        text.PR_DOC_UNCHANGED,
        text.PR_DOC_LATER,
        text.PR_DOC_READY
    ].map(opt => `[x] ${opt.toLowerCase()}`);
    body = body.toLowerCase();
    return !docOptions.some(opt => body.includes(opt));
}