Coco 0.5.2
https://github.com/satyr/coco/tree/0.5.2
0.4.2 | 0.5.2 |
---|---|
///.../// |
//...// |
if !a? then a else b |
a !? b |
function f(a, b) -> |
function f a, b |
let (a = b) ~> |
let a = b |
new -> |
new |
switch case [a, b] then |
switch case a, b then |
[...a, b] |
a + [b] |
[]join.call a, \- |
a * \- |
String(x)replace /-/g '' |
x - /-/g |
String(x)split \- |
x / \- |
Math.pow(n, m) |
n ** m |