added check module
This commit is contained in:
9
ts/smartpath.check.ts
Normal file
9
ts/smartpath.check.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
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
|
||||
}
|
Reference in New Issue
Block a user