functions.js 173 B

123456789
  1. const exists = (item) => {
  2. return typeof(item) !== "undefined";
  3. };
  4. const is_string = (item) => {
  5. return typeof(item) === "string";
  6. }
  7. export { exists, is_string };