coffee-script icon indicating copy to clipboard operation
coffee-script copied to clipboard

IcedCoffeeScript

Results 84 coffee-script issues
Sort by recently updated
recently updated
newest added

try this a.delete = ()=> await t defer next funcname: ""delete""

For instance take the following code: ``` getThing = (thing_id, cb_success, cb_error) -> model.findById thing_id, (error, thing) -> if error || !thing cb_error "error" else cb_success thing ``` And then...

I am working with streams using the highland.js library, and I want to use ICS to flatten the christmas tree code shape when using `flatMap`. I need to return a...

The following tries to declare variable "[first]" instead of destructuring the result: ``` await query_array defer([first]) ``` Is this expected behaviour?

Just throwing up an idea. This is completely half baked. How about supporting the following syntax... ``` on (err) return error(err) await (err, data) = http.post(data, url, defer) await (err,...

The current version is `1.8.0-a`, which [semver](https://www.npmjs.org/doc/misc/semver.html) treats as a prerelease. This means that I can't add a dependency to my project like `~1.8`. Would you consider dropping the `-letter`...

``` javascript if x?.y return true ``` here **undefined** is tested for **x** But ``` javascript if anObject.x?.y return true ``` here **undefined** isn't tested for **x**

In _iced coffee script_ version **1.6.3-f** `autocb` is working. But in later versions is not: ``` ❯ iced --version IcedCoffeeScript version 1.7.1-g ❯ iced /path/to/file.iced ReferenceError: autocb is not defined...

It's more of a communication issue rather than with the project itself, but the Change Log on the main site suggests that this awesome project is no longer maintained since...

With the below sample: ``` # test.coffee f = (s, e) -> s 'you succeeded' rv = new iced.Rendezvous f rv.defer msg, rv.defer err await rv.wait defer which console.log "got...