UNPKG

typescript-text-config

Version:

a typescript libary for get enviroment data from text file

13 lines (11 loc) 282 B
export class TxtFileType { constructor(public filename: string) {} public checkfile(): boolean { // create type const type = this.filename.split('.'); if (type[type.length-1]=='txt'){ return true; } return false; } }