Closed Dessix closed 7 years ago
This lets you use $*1, $*2, etc to pass parameters with their .toString() output instead of their JSON form. I wanted to be able to use integers in parameters without having to parseInt on the other side of it, and this resolves that constraint.
$*1
$*2
.toString()
parseInt
Great! Thanks for implementing this.
This lets you use
$*1
,$*2
, etc to pass parameters with their.toString()
output instead of their JSON form. I wanted to be able to use integers in parameters without having toparseInt
on the other side of it, and this resolves that constraint.