2020-03-13 20:22:56 +00:00
|
|
|
// node native scope
|
2022-04-04 12:15:51 +00:00
|
|
|
import * as path from 'path';
|
2023-11-06 17:14:21 +00:00
|
|
|
import * as stream from 'stream';
|
2020-03-13 20:22:56 +00:00
|
|
|
|
2023-11-06 17:14:21 +00:00
|
|
|
export { path, stream };
|
2020-03-13 20:22:56 +00:00
|
|
|
|
|
|
|
// @pushrocks scope
|
2023-07-26 14:13:33 +00:00
|
|
|
import * as smartfile from '@push.rocks/smartfile';
|
2024-03-16 23:29:42 +00:00
|
|
|
import * as smartdelay from '@push.rocks/smartdelay';
|
2023-07-26 14:13:33 +00:00
|
|
|
import * as smartpath from '@push.rocks/smartpath';
|
|
|
|
import * as smartpromise from '@push.rocks/smartpromise';
|
|
|
|
import * as smartrequest from '@push.rocks/smartrequest';
|
|
|
|
import * as smartunique from '@push.rocks/smartunique';
|
|
|
|
import * as smartstream from '@push.rocks/smartstream';
|
|
|
|
import * as smartrx from '@push.rocks/smartrx';
|
2023-11-06 17:14:21 +00:00
|
|
|
import * as smarturl from '@push.rocks/smarturl';
|
2020-03-13 20:22:56 +00:00
|
|
|
|
2024-03-16 23:29:42 +00:00
|
|
|
export { smartfile, smartdelay, smartpath, smartpromise, smartrequest, smartunique, smartstream, smartrx, smarturl };
|
2020-03-13 20:22:56 +00:00
|
|
|
|
|
|
|
// third party scope
|
2023-11-06 17:14:21 +00:00
|
|
|
import * as fileType from 'file-type';
|
|
|
|
import * as fflate from 'fflate';
|
2021-04-19 11:49:25 +00:00
|
|
|
import tarStream from 'tar-stream';
|
2020-03-13 20:22:56 +00:00
|
|
|
|
2023-11-11 17:28:50 +00:00
|
|
|
export { fileType, fflate, tarStream };
|