Extend GCL Deferred to work with promesa abstractions

This commit is contained in:
Andrey Antukh 2023-12-22 12:49:22 +01:00 committed by Alonso Torres
parent 0b53dc627f
commit 4d54d5c455
2 changed files with 15 additions and 0 deletions

View file

@ -0,0 +1,14 @@
;; This Source Code Form is subject to the terms of the Mozilla Public
;; License, v. 2.0. If a copy of the MPL was not distributed with this
;; file, You can obtain one at http://mozilla.org/MPL/2.0/.
;;
;; Copyright (c) KALEIDOS INC
(ns app.util.extends
"A dummy namespace for closure library and other global objects
extensions"
(:require
[promesa.impl :as pi])
(:import goog.async.Deferred))
(pi/extend-promise! Deferred)