yoastseo-dep
Version:
Yoast clientside page analysis
47 lines (41 loc) • 1.25 kB
JavaScript
import { languageProcessing } from "yoastseo-dep";
const { AbstractResearcher } = languageProcessing;
// All config
import firstWordExceptions from "./config/firstWordExceptions";
import { all as functionWords } from "./config/functionWords";
import stopWords from "./config/stopWords";
import transitionWords from "./config/transitionWords";
import twoPartTransitionWords from "./config/twoPartTransitionWords";
import syllables from "./config/syllables.json";
// All helpers
import getClauses from "./helpers/getClauses";
import getStemmer from "./helpers/getStemmer";
import fleschReadingScore from "./helpers/calculateFleschReadingScore";
/**
* The researches contains all the researches
*/
export default class Researcher extends AbstractResearcher {
/**
* Constructor
* @param {Paper} paper The Paper object that is needed within the researches.
* @constructor
*/
constructor( paper ) {
super( paper );
Object.assign( this.config, {
language: "fr",
passiveConstructionType: "periphrastic",
firstWordExceptions,
functionWords,
stopWords,
transitionWords,
twoPartTransitionWords,
syllables,
} );
Object.assign( this.helpers, {
getClauses,
getStemmer,
fleschReadingScore,
} );
}
}