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
import { Reader } from "./types";
export const read: Reader<Array<unknown>> = (v) => {
if (Array.isArray(v)) {
return v;
}
return undefined;
};