UNPKG

@nestjs/cli

Version:

Nest - modern, fast, powerful node.js web framework (@cli)

5 lines (4 loc) 134 B
import { extname } from 'path'; export function appendTsExtension(path) { return extname(path) === '.ts' ? path : path + '.ts'; }