Posts by Dorta • 7 points
2 posts
-
0
votes0
answers14
viewsQ: Google font not rendering in SVG React
I created the logo of my system in SVG by Illustrator, the logo has 2 fonts google fonts, but to be rendered depends on having the source installed in the OS. I did a lot of research to try to solve…
-
-6
votes1
answer44
viewsQ: What is the Regexp equivalent of split("") in JS?
I want to split the number PI 3.141593 into an array that does not contain '.' and all separate numbers. I tried to split . split(/[ .""]/g) but it didn’t work. What would be the equivalent…