yoastseo-dep
Version:
Yoast clientside page analysis
16 lines (13 loc) • 458 B
JavaScript
import { helpers } from "yoastseo-dep";
const { formatNumber } = helpers;
/**
* Returns the Flesch reading score for Italian.
*
* @param {Object} statistics The Flesch reading statistics.
*
* @returns {number} The Flesch reading score for Italian.
*/
export default function calculateScore( statistics ) {
const score = 217 - ( 1.3 * statistics.averageWordsPerSentence ) - ( 0.6 * statistics.syllablesPer100Words );
return formatNumber( score );
}