-
Notifications
You must be signed in to change notification settings - Fork 75
/
Copy path_parse-jsonp.js
46 lines (41 loc) · 1.01 KB
/
_parse-jsonp.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/** @module Provides joke language support for importing JSONP modules. */
/**
* @import {ParseFn, ParserImplementation} from '../src/types.js'
*/
const textDecoder = new TextDecoder();
/** @type {ParseFn} */
export const parseJsonp = (bytes, _specifier, _location, _packageLocation) => {
// Presumes that all JSONP module bytes are retrieved with ?callback=exports.
const source = textDecoder.decode(bytes);
const imports = harden([]);
/**
* @param {object} exports
*/
const execute = exports => {
const compartment = new Compartment({
__options__: true,
globals: harden({
// @ts-expect-error
exports(value) {
exports.default = value;
},
}),
});
compartment.evaluate(source);
};
return {
parser: 'jsonp',
bytes,
record: harden({
imports,
exports: ['default'],
execute,
}),
};
};
/** @type {ParserImplementation} */
export default {
parse: parseJsonp,
heuristicImports: false,
synchronous: true,
};