mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
9 lines
281 B
JavaScript
9 lines
281 B
JavaScript
|
import getMeta from '../../../utils/meta'
|
||
|
|
||
|
function isFlagEnabled(flag) {
|
||
|
return getMeta('ol-splitTestVariants')?.[flag] === 'enabled'
|
||
|
}
|
||
|
|
||
|
export const enablePdfCaching = isFlagEnabled('pdf-caching-mode')
|
||
|
export const trackPdfDownloadEnabled = isFlagEnabled('track-pdf-download')
|