Skip to content

Commit

Permalink
FIX: Drop unused function
Browse files Browse the repository at this point in the history
  • Loading branch information
effigies committed Sep 8, 2023
1 parent 1a4f726 commit 4647010
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions bids-validator/src/files/dwi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@
*/
const normalizeEOL = (str: string): string =>
str.replace(/\r\n/g, '\n').replace(/\r/g, '\n')
// Typescript resolved `row && !/^\s*$/.test(row)` as `string | boolean`
const isContentfulRow = (row: string): boolean => !!(row && !/^\s*$/.test(row))

export function parseBval(contents: string): number[][] {
// BVAL files are a single row of numbers, and may contain
Expand Down

0 comments on commit 4647010

Please sign in to comment.