File size: 836 Bytes
bc20498
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/**
 * @param {Record<string, string>} env
 * @param {{
 * 		public_prefix: string;
 * 		private_prefix: string;
 * }} prefixes
 * @returns {Record<string, string>}
 */
export function filter_private_env(env, { public_prefix, private_prefix }) {
	return Object.fromEntries(
		Object.entries(env).filter(
			([k]) =>
				k.startsWith(private_prefix) && (public_prefix === '' || !k.startsWith(public_prefix))
		)
	);
}

/**
 * @param {Record<string, string>} env
 * @param {{
 * 		public_prefix: string;
 *    private_prefix: string;
 * }} prefixes
 * @returns {Record<string, string>}
 */
export function filter_public_env(env, { public_prefix, private_prefix }) {
	return Object.fromEntries(
		Object.entries(env).filter(
			([k]) =>
				k.startsWith(public_prefix) && (private_prefix === '' || !k.startsWith(private_prefix))
		)
	);
}