git ssb

1+

clemo / helperjs



Tree: fbad0279dd4439c8eb8da96d385e27acd5755c74

Files: fbad0279dd4439c8eb8da96d385e27acd5755c74 / index.js

618 bytesRaw
1import Math from './lib/math.js';
2import Lib from './lib/lib.js';
3import Form from './lib/form.js';
4import * as config from './lib/config.js';
5import * as express from './lib/express.js';
6import debug from 'debug';
7const log = debug('helper:index:info');
8const error = debug('helper:index:error');
9exports.debug = debug;
10exports.Math = Math;
11exports.Lib = Lib;
12exports.Form = Form;
13exports.config = config.default;
14exports.Config = config.Config;
15exports.express = express;
16exports.export = function uuid(x) {
17 error('helper.uuid() will be removed soon, use new helper.Math().uuid()');
18 return new Math().uuid(x);
19}
20

Built with git-ssb-web