const exists = (item) => { return typeof(item) !== "undefined"; }; const is_string = (item) => { return typeof(item) === "string"; } export { exists, is_string };