Function fetchFromRemote
has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
async function fetchFromRemote(urlToFetch) {
const options = {
url : encodeURI(urlToFetch),
timeout : HTTP_TIMEOUT,
headers : {
Function fetchFromRemote
has 36 lines of code (exceeds 25 allowed). Consider refactoring.
async function fetchFromRemote(urlToFetch) {
const options = {
url : encodeURI(urlToFetch),
timeout : HTTP_TIMEOUT,
headers : {
Similar blocks of code found in 2 locations. Consider refactoring.
it('should prefer the set url', async () => {
const result = await postProcess("http://bit.ly/redirect", {ogUrl : 'http://example.com'});
assert.strictEqual(result.data.url[0].value, 'http://example.com');
});
Similar blocks of code found in 2 locations. Consider refactoring.
it('should set the name if given', async () => {
const result = await postProcess("http://bit.ly/redirect", {ogSiteName : 'Example'});
assert.strictEqual(result.data.site_name[0].value, 'Example');
});
Function postProcess
has 26 lines of code (exceeds 25 allowed). Consider refactoring.
export default function postProcess(url, data) {
const result = defaultOutput(url);
const canonicalUrl = data.ogUrl || url;
Similar blocks of code found in 2 locations. Consider refactoring.
app.get('/opengraph', async (req, res) => {
const data = await getOpengraphData(req.query.url);
respondWithData(res, data);
});
Similar blocks of code found in 2 locations. Consider refactoring.
app.delete('/opengraph', async (req, res) => {
const data = await removeOpengraphData(req.query.url);
respondWithData(res, data);
});
Parsing error: Invalid ecmaVersion.
import defaultOutput from './defaultOutput';
Parsing error: Invalid ecmaVersion.
Parsing error: Invalid ecmaVersion.
const moment = require("moment-timezone");
Parsing error: Invalid ecmaVersion.
import ogs from 'open-graph-scraper';
Parsing error: Invalid ecmaVersion.
import moment from "moment-timezone";
Parsing error: Invalid ecmaVersion.
import {describe, it} from 'mocha';
Parsing error: Invalid ecmaVersion.
import './mapper';
Parsing error: Invalid ecmaVersion.
import {describe, it} from 'mocha';
Parsing error: Invalid ecmaVersion.
import ElasticSearch from 'elasticsearch';
Parsing error: Invalid ecmaVersion.
import express from 'express';
Parsing error: Invalid ecmaVersion.
import {it} from "mocha";
Parsing error: Invalid ecmaVersion.
import {promisify} from 'es6-promisify';
Parsing error: Invalid ecmaVersion.
import {describe, it} from 'mocha';