mirror of
https://github.com/swc-project/swc.git
synced 2024-12-21 12:41:54 +03:00
bbaf619f63
swc_bundler: - [x] Fix wrapped esms. (denoland/deno#9307) - [x] Make test secure.
16 lines
403 B
TypeScript
16 lines
403 B
TypeScript
// Loaded from https://deno.land/x/segno@v1.1.0/lib/validations/isWhitelisted.ts
|
|
|
|
|
|
// @ts-ignore allowing typedoc to build
|
|
import { assertString } from '../helpers/assertString.ts';
|
|
|
|
export const isWhitelisted = (str: string, chars: string[]) => {
|
|
assertString(str);
|
|
for (let i = str.length - 1; i >= 0; i--) {
|
|
if (chars.indexOf(str[i]) === -1) {
|
|
return false;
|
|
}
|
|
}
|
|
return true;
|
|
};
|