import getUrlParam from'../getUrlParam.js';
/**
* Retrieves the current activity ID.
* @returns {string | null} The activity ID, or `null` if not available.
*/exportdefaultfunctiongetVLEActivityId() {
returngetUrlParam('activityId') || getUrlParam('_a');
}