Spaces:
Sleeping
Sleeping
| diff --git a/node_modules/sdp/sdp.js b/node_modules/sdp/sdp.js | |
| index d0e6488..007570f 100644 | |
| --- a/node_modules/sdp/sdp.js | |
| +++ b/node_modules/sdp/sdp.js | |
| SDPUtils.isValidSDP = function(blob) { | |
| return true; | |
| }; | |
| -// Expose public methods. | |
| -if (typeof module === 'object') { | |
| - module.exports = SDPUtils; | |
| -} | |
| +// Expose public methods (patched for ESM) | |
| +export default SDPUtils; | |
| +export { SDPUtils }; | |