yoastseo-dep
Version:
Yoast clientside page analysis
16 lines (13 loc) • 495 B
JavaScript
import { helpers } from "yoastseo-dep";
const { formatNumber } = helpers;
/**
* Returns the Flesch reading score for Portuguese.
*
* @param {Object} statistics The Flesch reading statistics.
*
* @returns {number} The Flesch reading score for Portuguese.
*/
export default function calculateScore( statistics ) {
const score = 248.835 - ( 1.015 * statistics.averageWordsPerSentence ) - ( 84.6 * statistics.numberOfSyllables / statistics.numberOfWords );
return formatNumber( score );
}