mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-09-19 14:09:31 +02:00
6 lines
145 B
TypeScript
6 lines
145 B
TypeScript
import { InitialValuesType } from './types';
|
|
|
|
export function main(input: string, options: InitialValuesType): string {
|
|
return input + 'pp';
|
|
}
|