smartpath/ts/smartpath.check.ts
2016-06-14 05:16:43 +02:00

10 lines
278 B
TypeScript

import "typings-global";
import plugins = require("./smartpath.plugins");
export let isDir = function(pathArg:string){
return !isFile(pathArg);
}
export let isFile = function(pathArg){
return /\.[a-zA-Z]*$/.test(pathArg); // checks if there is a .anything at the end
}