smarthash/ts/nodehash.plugins.ts

19 lines
421 B
TypeScript
Raw Permalink Normal View History

2019-07-04 14:56:37 +00:00
// node native scope
import crypto from 'crypto';
import * as fs from 'fs';
import * as path from 'path';
import * as stream from 'stream';
2019-11-21 14:20:57 +00:00
export { crypto, fs, path, stream };
2019-07-04 14:56:37 +00:00
// pushrocks scope
2023-09-22 11:51:11 +00:00
import * as smartpromise from '@push.rocks/smartpromise';
import * as smartjson from '@push.rocks/smartjson';
2019-07-04 14:56:37 +00:00
2019-11-21 14:20:57 +00:00
export { smartpromise, smartjson };
2019-07-04 14:56:37 +00:00
// thirdparty scope
import through2 from 'through2';
2019-11-21 14:20:57 +00:00
export { through2 };