smartpath/ts/smartpath.check.ts

9 lines
253 B
TypeScript
Raw Normal View History

2016-04-30 09:02:03 +00:00
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
}