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
29 lines
783 B
JavaScript
29 lines
783 B
JavaScript
'use strict';
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
|
|
exports.default = function (eachfn) {
|
|
return function applyEach(fns, ...callArgs) {
|
|
const go = (0, _awaitify2.default)(function (callback) {
|
|
var that = this;
|
|
return eachfn(fns, (fn, cb) => {
|
|
(0, _wrapAsync2.default)(fn).apply(that, callArgs.concat(cb));
|
|
}, callback);
|
|
});
|
|
return go;
|
|
};
|
|
};
|
|
|
|
var _wrapAsync = require('./wrapAsync.js');
|
|
|
|
var _wrapAsync2 = _interopRequireDefault(_wrapAsync);
|
|
|
|
var _awaitify = require('./awaitify.js');
|
|
|
|
var _awaitify2 = _interopRequireDefault(_awaitify);
|
|
|
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
|
|
module.exports = exports.default; |