Giter Club home page Giter Club logo

kitchen-async's Issues

Keyword-get in threading macro does not work

First off, thank you for this library - I am finding it to be very useful!

I think I've found a bug with using plain keywords in the -> threading macro.

Using a plain keyword, the result is passed through unchanged:

(p/-> (new js/Promise (fn [resolve reject]
                        (resolve {:x 10})))
      :x
      (print))

=>  {:x 10}
    ^ incorrect

But if we use (get _ :kw), the correct result is returned:

(p/-> (new js/Promise (fn [resolve reject]
                        (resolve {:x 10})))
      (get :x)
      (print))

=> 10
   ^ correct

`core.async` interop?

Getting excited to use this library, but was hoping to find some docs on the interop syntax for js/Promise -> core.async. I noticed the library is proposing to do this. Any thoughts of when?

0.1.0 release

Could you consider releasing 0.1.0 so we don't have to depend on a SNAPSHOT dependency.

Expansion result of threading macros is broken with JS interop

The following form should be completely valid:

(p/-> (js/fetch url) .json)

But, the expansion result of that is not:

=> (macroexpand '(p/-> (js/fetch url) .json))
(try
 (kitchen-async.promise/->
  (kitchen-async.promise/then (js/fetch url) .json))  ;; <- .json should be (fn [x#] (.json x#)) here
 (catch
  :default
  e__51305__auto__ 
  (kitchen-async.promise/reject e__51305__auto__)))

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.