/* Split a string into an array by a separator. ```js */ export default function (str, sep) { return String(str ?? "").split(sep); } //```