/** * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @flow strict * @format */ // flowlint ambiguous-object-type:error 'use strict'; let whitelistsByProject: ?Map> = null; /** * This module helps gradually rolling out changes to the code generation by * gradually enabling more buckets representing randomly distributed artifacts. */ function set(newWhitelistsByProject: Map>) { whitelistsByProject = newWhitelistsByProject; } function check(project: string, key: string): boolean { if (whitelistsByProject == null) { return true; } const whitelist = whitelistsByProject.get(project); if (whitelist == null) { return true; } return whitelist.has(key); } module.exports = { set, check, };