"use strict"; module.exports = function parseOptionalString(string) { if (string.length === 0) { return undefined; } else { return string; } };