smartpath/ts/index.ts

13 lines
373 B
TypeScript
Raw Normal View History

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