This repository was archived by the owner on Oct 4, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +4
-8
lines changed Expand file tree Collapse file tree 4 files changed +4
-8
lines changed Original file line number Diff line number Diff line change 1717 " package.json"
1818 ],
1919 "dependencies" : {
20- "purescript-prelude" : " ^1.0 .0"
20+ "purescript-prelude" : " ^2.1 .0"
2121 }
2222}
Original file line number Diff line number Diff line change 11"use strict" ;
22
3- // module Control.Monad.Eff
4-
53exports . pureE = function ( a ) {
64 return function ( ) {
75 return a ;
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