Yoast / YoastSEO.js

Analyze content on a page and give SEO feedback as well as render a snippet preview.
GNU General Public License v3.0
403 stars 171 forks source link

Add FunctionWordsInKeyphraseAssessment as seo assessment export #2137

Closed igorschoester closed 5 years ago

igorschoester commented 5 years ago

Original PR: https://github.com/Yoast/YoastSEO.js/pull/2118

The FunctionWordsInKeyphraseAssessment class was not available as an seo assessment export. This changes makes it available with the others :)

Summary

This PR can be summarized in the following changelog entry:

Relevant technical choices:

Test instructions

This PR can be tested by following these steps:

The following should work:

import { assessments } from 'yoastseo';

const FunctionWordsInKeyphraseAssessment = new assessments.seo.FunctionWordsInKeyphraseAssessment();

console.log(FunctionWordsInKeyphraseAssessment);

Fixes #