Design_r on Nostr: Ray.so: Create beautiful images of your code https://ray.so/ Simple and easy tool to ...
Ray.so: Create beautiful images of your code
https://ray.so/
Simple and easy tool to beatify your code to display it as image.
from:
```
module.exports = leftpad;
function leftpad(str, len, ch) {
str = String(str);
var i = -1;
if (!ch && ch !== 0) ch = ' ';
len = len - str.length;
while (i++ < len) {
str = ch + str;
}
return str;
}
```
to:

pretty nice!
originally posted at https://stacker.news/items/865551
https://ray.so/
Simple and easy tool to beatify your code to display it as image.
from:
```
module.exports = leftpad;
function leftpad(str, len, ch) {
str = String(str);
var i = -1;
if (!ch && ch !== 0) ch = ' ';
len = len - str.length;
while (i++ < len) {
str = ch + str;
}
return str;
}
```
to:

pretty nice!
originally posted at https://stacker.news/items/865551