File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed
Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change 11"use strict" ;
22
3- // module Control.Monad.Eff.Unsafe
4-
5- exports . unsafeInterleaveEff = function ( f ) {
3+ exports . unsafeCoerceEff = function ( f ) {
64 return f ;
75} ;
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ import Control.Semigroupoid ((<<<))
77-- | another context.
88-- |
99-- | *Note*: use of this function can result in arbitrary side-effects.
10- foreign import unsafeInterleaveEff
10+ foreign import unsafeCoerceEff
1111 :: forall eff1 eff2 a
1212 . Eff eff1 a
1313 -> Eff eff2 a
@@ -16,4 +16,4 @@ foreign import unsafeInterleaveEff
1616-- |
1717-- | *Note*: use of this function can result in arbitrary side-effects.
1818unsafePerformEff :: forall eff a . Eff eff a -> a
19- unsafePerformEff = runPure <<< unsafeInterleaveEff
19+ unsafePerformEff = runPure <<< unsafeCoerceEff
You can’t perform that action at this time.
0 commit comments