Source code
Revision control
Copy as Markdown
Other Tools
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
const PREF_WALLPAPER_LIBRARY_ENABLED =
"newtabWallpapers.customWallpaper.library.enabled";
// Off by default. A trainhop rollout turns it on without shipping a new
// add-on, the same way the widgets read their own namespaces.
export const isWallpaperLibraryEnabled = prefValues =>
!!(
prefValues?.[PREF_WALLPAPER_LIBRARY_ENABLED] ||
prefValues?.trainhopConfig?.customWallpaperLibrary?.enabled
);