Oleksandr Popov

Results 4 issues of Oleksandr Popov

The project doesn't seem to be maintained. It's been awhile since the last commit and there are old issues that are also ignored. Do you plan to continue development?

When `popupWindow.closed` is true the promise should be rejected, otherwise the popup wil not open again. ```javascript // TODO: Find a better way of tracking when a Window closes. return...

@salte-auth/popup

Consider the following code: ```php $maybe = Maybe::fromValue(null) ->flatMap(function () { return Maybe::fromValue('some value'); }) ->getOrElse('default'); ``` It causes the error: `PHP Fatal error: Uncaught Error: Call to a member...

Consider the following code: ```php use Chemem\Bingo\Functional\Functors\Monads\IO; $io = IO::of(function () { echo 'LOG 1', PHP_EOL; }) ->bind(function () { return IO::of(function () { echo 'LOG 2', PHP_EOL; }); });...

question