09 2018 档案
摘要:``` const HttpRequest = function() { this.query = '' } function HttpResponse() { this.body = [] this.status = 0; } HttpResponse.prototype.write = function(block) { this.body.push(block) } H...
阅读全文
摘要:``` const compose = (...fns) = { let len = fns.length; let fn_index = len 1; let fn_result; function invoke(...args) { fn_result = len ? fns[fn_index]
阅读全文
摘要:``` using NUnit.Framework; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Pactera.Bpm.TestProject.MiddlewareTest { [...
阅读全文