UNPKG
ingenious-flow-designer
Version:
latest (2.0.0)
2.0.0
1.0.4
1.0.3
1.0.2
1.0.1
[演示地址](http://antd-vben5-pro.madong.tech/)
gitee.com/motion-code/flow-designer
ingenious-flow-designer
/
packages
/
flow-designer
/
src
/
tool.ts
5 lines
(4 loc)
•
185 B
text/typescript
View Raw
1
2
3
4
5
export
function
parseSvg
(
svgStr
:
string
):
string
[] {
const
matches = svgStr.
match
(
/d="[^"]*"/g
) || [];
return
matches.
map
(
match
=>
match.
replace
(
'd="'
,
''
).
replace
(
'"'
,
''
)); }