smartpath/ts/index.ts
2024-04-22 18:41:58 +02:00

13 lines
373 B
TypeScript

import * as plugins from './smartpath.plugins.js';
// import modules
import * as check from './smartpath.check.js';
import * as get from './smartpath.get.js';
import * as transform from './smartpath.transform.js';
export { check, get, transform };
export const join = (...args: string[]) => plugins.path.join(...args);
export * from './smartpath.classes.smartpath.js';