subcollection
Version:
A collection of scripts to send Core Web Vital data to GA4
14 lines (13 loc) • 419 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.POOR_SCORE = exports.NO_RATING = exports.GOOD_SCORE = exports.AVERAGE_SCORE = void 0;
var GOOD_SCORE = 'good';
exports.GOOD_SCORE = GOOD_SCORE;
var AVERAGE_SCORE = 'average';
exports.AVERAGE_SCORE = AVERAGE_SCORE;
var POOR_SCORE = 'poor';
exports.POOR_SCORE = POOR_SCORE;
var NO_RATING = 'no rating';
exports.NO_RATING = NO_RATING;