import getUrlParam from'../getUrlParam.js';
/**
* Retrieves the current document ID.
* @returns {string | null} The document ID, or `null` if not available.
*/exportdefaultfunctiongetVLEDocumentId() {
returngetUrlParam('documentId') || getUrlParam('_i');
};