smartpath/ts/smartpath.check.ts
2022-03-14 13:26:48 +01:00

10 lines
259 B
TypeScript

import * as plugins from './smartpath.plugins.js';
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
};