2024-04-22 18:41:58 +02:00
|
|
|
import * as plugins from './smartpath.plugins.js';
|
|
|
|
|
2016-09-30 17:08:09 +02:00
|
|
|
// import modules
|
2022-03-14 13:26:48 +01:00
|
|
|
import * as check from './smartpath.check.js';
|
|
|
|
import * as get from './smartpath.get.js';
|
|
|
|
import * as transform from './smartpath.transform.js';
|
2016-11-26 22:46:36 +01:00
|
|
|
|
2018-07-21 23:26:11 +02:00
|
|
|
export { check, get, transform };
|
2015-09-25 23:05:25 +02:00
|
|
|
|
2024-04-22 18:41:58 +02:00
|
|
|
export const join = (...args: string[]) => plugins.path.join(...args);
|
|
|
|
|
2022-03-14 13:26:48 +01:00
|
|
|
export * from './smartpath.classes.smartpath.js';
|