import Math from './lib/math.js'; import Lib from './lib/lib.js'; import Form from './lib/form.js'; import * as config from './lib/config.js'; import * as express from './lib/express.js'; import debug from 'debug'; const log = debug('helper:index:info'); const error = debug('helper:index:error'); exports.debug = debug; exports.Math = Math; exports.Lib = Lib; exports.Form = Form; exports.config = config.default; exports.Config = config.Config; exports.express = express; exports.export = function uuid(x) { error('helper.uuid() will be removed soon, use new helper.Math().uuid()'); return new Math().uuid(x); }