function getAsVolumeFile()

in lib/volumeConfigurationResolver.js [19:26]


function getAsVolumeFile(value) {
  if (value && value.startsWith && value.startsWith(volumeFilePrefix)) {
    const i = value.indexOf(volumeFilePrefix);
    const v = value.substr(i + volumeFilePrefix.length);
    return path.basename(v);
  }
  return undefined;
}