Skip to content

Commit

Permalink
update patch number
Browse files Browse the repository at this point in the history
  • Loading branch information
slothyace authored Feb 11, 2025
1 parent 73dd5c5 commit c559af8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Actions/textExtractions_MOD.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
modVersion = "s.v1.0"
modVersion = "s.v1.1"
module.exports = {
data: {
name: "Extract From Text"
Expand Down Expand Up @@ -63,7 +63,7 @@ module.exports = {
break

case "number":
extracts = [...source.matchAll(/(\d+.?\d+)/g)].map((match) => match[0])
extracts = [...source.matchAll(/(\d+(?:\.\d+)?)/g)].map((match) => match[0])
break
}
let results = (extracts && extracts.length > 0) ? extracts : []
Expand Down
2 changes: 1 addition & 1 deletion Actions/timeConversions_MOD.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
modVersion = "s.v2.1"
modVersion = "s.v2.2"
module.exports = {
data: {
name: "Time Conversions",
Expand Down

0 comments on commit c559af8

Please sign in to comment.