Source: utils/hedStrings.js

  1. /**
  2. * Get the indices of all slashes in a HED tag.
  3. */
  4. export const getTagSlashIndices = function (tag) {
  5. const indices = []
  6. let i = -1
  7. while ((i = tag.indexOf('/', i + 1)) >= 0) {
  8. indices.push(i)
  9. }
  10. return indices
  11. }