Skip to content

Commit ff10068

Browse files
committed
feat(ses): export Permits
This exports the entirety of `src/permits.js` as the `Permits` object via the `tools` export. We are using this information in `lavamoat-tofu` for SES-compat detection, and we would like to keep it up-to-date with SES. There are other ways we could accomplish this, but exporting it is the easiest way for `lavamoat-tofu` to consume it.
1 parent aa82c91 commit ff10068

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

packages/ses/src/permits.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/* eslint-disable no-restricted-globals */
22
/**
3-
* @file Exports {@code whitelist}, a recursively defined
4-
* JSON record enumerating all intrinsics and their properties
5-
* according to ECMA specs.
3+
* Exports {@link permitted}, a recursively defined JSON record enumerating all
4+
* intrinsics and their properties according to ECMA specs.
65
*
6+
* @module
77
* @author JF Paradis
88
* @author Mark S. Miller
99
*/

packages/ses/tools.js

+2
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,5 @@ export const scopeTerminators = freeze({
2323
strictScopeTerminator,
2424
createSloppyGlobalsScopeTerminator,
2525
});
26+
27+
export * as Permits from './src/permits.js';

0 commit comments

Comments
 (0)