Skip to content
Merged
Prev Previous commit
Next Next commit
Fix FFI export
  • Loading branch information
JordanMartinez committed Mar 22, 2022
commit e4928fd974b1ef70197634581bff5d7e66bd0286
5 changes: 3 additions & 2 deletions src/Web/Fetch/AbortController.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
export function new() {
const newImpl = function () {
return new AbortController();
}
};
export { newImpl as new };

export function abort(controller) {
return function() {
Expand Down