import React from 'react' import moment from 'moment' // import regex_parse from './parseCommon.js'; exports.formatTime = (timestamp) => { return moment.unix(timestamp).format("YYYY-MM-DD HH:mm:ss") } exports.logoSVG = (length) => ( Icon Created with Sketch. ); exports.debounce = (func, wait) => { let timeout; return function() { clearTimeout(timeout); timeout = setTimeout(func, wait); }; };