You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- let _snapshotEnvironment;
- function setupSnapshotEnvironment(environment) {
- _snapshotEnvironment = environment;
- }
- function getSnapshotEnvironment() {
- if (!_snapshotEnvironment)
- throw new Error("Snapshot environment is not setup");
- return _snapshotEnvironment;
- }
-
- export { getSnapshotEnvironment as g, setupSnapshotEnvironment as s };
|