mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
18 lines
470 B
TypeScript
18 lines
470 B
TypeScript
|
import type { SchemaObj } from 'convict';
|
||
|
|
||
|
class NotStringArrayError extends Error {
|
||
|
constructor(env: string) {
|
||
|
super(`${env} is not a string array.`);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export const ensureStringArray = (values: string[], { env }: SchemaObj<string>) => {
|
||
|
if (!env) throw new Error(`Missing env: ${env}`);
|
||
|
|
||
|
if (!Array.isArray(values)) throw new NotStringArrayError(env);
|
||
|
|
||
|
for (const value of values) {
|
||
|
if (typeof value !== 'string') throw new NotStringArrayError(env);
|
||
|
}
|
||
|
};
|