IriRelativizationOptions.full constructor

const IriRelativizationOptions.full()

Full relativization - allow any valid relative path structure.

Enables maximum relativization including complex navigation patterns. Produces paths like "../sibling/file.txt" and "../../other/file.txt". Prioritizes compactness while still respecting length constraints. Will fall back to absolute IRIs if the length of the relative path exceeds the length of the absolute IRI.

Implementation

const IriRelativizationOptions.full()
    : maxUpLevels = null,
      maxAdditionalLength = 0,
      allowSiblingDirectories = true,
      allowAbsolutePath = true;