diff options
Diffstat (limited to 'llparse-frontend/src/transform/id.ts')
-rw-r--r-- | llparse-frontend/src/transform/id.ts | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/llparse-frontend/src/transform/id.ts b/llparse-frontend/src/transform/id.ts new file mode 100644 index 0000000..d86e3c1 --- /dev/null +++ b/llparse-frontend/src/transform/id.ts @@ -0,0 +1,7 @@ +import { Transform } from './base'; + +export class ID extends Transform { + constructor() { + super('id'); + } +} |