mirror of
https://github.com/swc-project/swc.git
synced 2024-12-20 20:22:26 +03:00
1178686a4c
swc_bundler: - Fix remapping of exports. (denoland/deno#9350)
10 lines
300 B
TypeScript
10 lines
300 B
TypeScript
// Loaded from https://deno.land/x/cliffy@v0.12.1/packages/flags/lib/types/string.ts
|
|
|
|
|
|
import { IFlagArgument, IFlagOptions, ITypeHandler } from '../types.ts';
|
|
|
|
export const string: ITypeHandler<string> = ( option: IFlagOptions, arg: IFlagArgument, value: string ): string => {
|
|
|
|
return value;
|
|
};
|