smartstring/ts/smartstring.plugins.ts

18 lines
397 B
TypeScript
Raw Normal View History

2019-01-12 19:41:01 +00:00
// node native
import * as crypto from 'crypto';
2019-04-16 06:54:27 +00:00
import * as url from 'url';
2019-01-12 19:41:01 +00:00
export {
2019-04-16 06:54:27 +00:00
crypto,
url
};
2019-01-12 19:41:01 +00:00
// third party
export let jsBase64 = require('js-base64').Base64;
2017-10-05 13:55:59 +00:00
export let stripIndent = require('strip-indent');
export let normalizeNewline = require('normalize-newline');
export let randomatic = require('randomatic');
export let cryptoRandomString = require('crypto-random-string');
2019-01-12 19:41:01 +00:00