Echo JS 0.11.0

<~>

Swizz comments

Swizz 2268 days ago. link 1 point
Ahah awesome Idea. Seriously I have this idea since a while but I never had the bravery to work on it. 

Great job !
Swizz 2344 days ago. link 1 point
`map` performance is no longuer a problem ?
Swizz 2457 days ago. link 1 point
At the beginning, it was the first argument.
But I looked more closer à my uses cases and the `console.log` API.

`console.log` could be used that way : 

```
console.log("The awesome value is : %s", value)
```

And I watched at the use of the comma operator. And, I have choosen to follow the comma operator evaluation.

That said the last value of the operation will be returned.


```
const a = () => (add = 1 + 2, add * 3)

const a = () => log(add = 1 + 2, add * 3)

```

Both will return 9. And every step of the comma operation will be printed.
Swizz 2457 days ago. link 1 point
Author here, I permit myself (not against the rules ?) to promote my first try to create an utility function using Typescript, Jest with size and perf concerns.
Swizz 2540 days ago. link 0 point
Another contrib, less exotic than the first one, I did :

(function(){
  console.log(window[
      (13)["toString"](36).toUpperCase() + 
      (10)["toString"](36) +
      (29)["toString"](36) +
      (14)["toString"](36)
    ][
      (23)["toString"](36) +
      (24)["toString"](36) +
      (32)["toString"](36)
    ]
    ()
  )
})();
Swizz 2556 days ago. link 1 point
After just moving to yarn, it's now time to consider moving to pnpm. Is this the thing formally known as JS fatigue ?
[more]