Skip to content

Commit

Permalink
file
Browse files Browse the repository at this point in the history
  • Loading branch information
sedghi committed Jan 16, 2025
1 parent 4bc0626 commit cf1f0d8
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions platform/core/src/utils/dicomSplit.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
export function dicomSplit(value) {
return (
(Array.isArray(value) && value) || (typeof value === 'string' && value.split('\\')) || value
);
}

0 comments on commit cf1f0d8

Please sign in to comment.