recoil
Version:
Recoil - A state management library for React
25 lines (21 loc) • 561 B
Flow
/**
* 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.
*
* @emails oncall+recoil
* @flow strict
* @format
*/
;
const gks = new Map();
declare function Recoil_gkx(gk: string): boolean;
Recoil_gkx.setPass = (gk: string): void => {
gks.set(gk, true);
};
Recoil_gkx.setFail = (gk: string): void => {
gks.set(gk, false);
};
module.exports = Recoil_gkx; // @oss-only
// @fb-only: module.exports = require('gkx');