6de2455917
- Added GLOBAL_MARKETS_TITLE to all translation files - Updated footer with 12 markets (4 active + 8 upcoming) - Translated market section to: zh-cn, zh-tw, ja, ko, th, vi, id, ms, hi - Built and deployed to production - CloudFront invalidation: I3RTMXVFDJXWLG3SYX208OP1CC
14 lines
378 B
JavaScript
14 lines
378 B
JavaScript
'use strict';
|
|
|
|
var format = require('./format');
|
|
|
|
/*
|
|
* function align (info)
|
|
* Returns a new instance of the align Format which adds a `\t`
|
|
* delimiter before the message to properly align it in the same place.
|
|
* It was previously { align: true } in winston < 3.0.0
|
|
*/
|
|
module.exports = format(function (info) {
|
|
info.message = "\t".concat(info.message);
|
|
return info;
|
|
}); |