"use strict"; module.exports = function parseStringList(string) { if (string.length === 0) { return []; } else { return string.split(","); } };