?? GreyFile — Mystic File Browser

Current path: home/webdevt/www/wdp/wp-content/plugins/brizy/public/editor-client/src/utils/reader/



?? Go up: /home/webdevt/www/wdp/wp-content/plugins/brizy/public/editor-client/src/utils

?? Viewing: array.ts

import { Reader } from "./types";

export const read: Reader<Array<unknown>> = (v) => {
  if (Array.isArray(v)) {
    return v;
  }

  return undefined;
};


??

??