UNPKG
snyk-mvn-plugin
Version:
latest (4.7.0)
4.7.0
4.6.1
4.6.0
4.5.2
4.5.1
4.5.0
4.4.0
4.3.3
4.3.2
4.3.1
4.3.0
4.2.0
4.1.2
4.1.1
4.1.0
4.0.1
4.0.0
3.9.1
3.9.0
3.8.3
3.8.2
3.8.1
3.8.0
3.7.0
3.6.1
3.6.0
3.5.0
3.4.2
3.4.1
3.4.0
3.3.1
3.3.0
3.2.1
3.2.0
3.1.2
3.1.1
3.1.0
3.0.1
3.0.0
2.34.0
2.33.0
2.32.3
2.32.2
2.32.0
2.31.3
2.31.2
2.31.1
2.31.0
2.30.0
2.29.7
2.29.6
2.29.5
2.29.4
2.29.3
2.29.2
2.29.1
2.29.0
2.28.3
2.28.2
2.28.1
2.28.0
2.27.0
2.26.4
2.26.3
2.26.2
2.26.1
2.26.0
2.25.3
2.25.2
2.25.1
2.25.0
2.24.0
2.23.4
2.23.3
2.23.2
2.23.1
2.23.0
2.22.0
2.21.1
2.21.0
2.20.0
2.19.4
2.19.3
2.19.1
2.19.0
2.18.2
2.18.1
2.18.0
2.17.3
2.17.2
2.17.1
2.17.0
2.16.0
2.15.2
2.15.1
2.15.0
2.14.0
2.13.0
2.12.0
2.11.0
2.10.1
2.10.0
2.9.2
2.9.1
2.9.0
2.8.0
2.7.1
2.7.0
2.6.2
2.6.1
2.6.0
2.5.0
2.4.0
2.3.3
2.3.2
2.3.1
2.3.0
2.2.0
2.1.0
2.0.1
2.0.0
1.2.2
1.2.1
1.2.0
1.1.1
1.1.0
1.0.3
1.0.2
1.0.1
1.0.0
Snyk CLI Maven plugin
github.com/snyk/snyk-mvn-plugin
snyk/snyk-mvn-plugin
snyk-mvn-plugin
/
dist
/
parse-digraph.js
9 lines
•
298 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
exports
.
parseDigraph
= parseDigraph;
const
regex =
/digraph([\s\S]*?)\}[\s]*?$/gm
;
function
parseDigraph
(
text
) {
const
result = text.
match
(regex);
return
result ||
null
; }
//# sourceMappingURL=parse-digraph.js.map