mirror of
https://github.com/swc-project/swc.git
synced 2024-12-24 22:22:34 +03:00
bbaf619f63
swc_bundler: - [x] Fix wrapped esms. (denoland/deno#9307) - [x] Make test secure.
6 lines
164 B
TypeScript
6 lines
164 B
TypeScript
// Loaded from https://deno.land/x/segno@v1.1.0/lib/helpers/includes.ts
|
|
|
|
|
|
export const includes = (arr: any[], val: any) =>
|
|
arr.some((arrVal) => val === arrVal);
|