浏览代码

Merge branch 'master' of http://git.bbh/chess/elxr

pull/9/head
guest 2 年前
父节点
当前提交
59b402839e
共有 1 个文件被更改,包括 3 次插入3 次删除
  1. 3
    3
      index.js

+ 3
- 3
index.js 查看文件

@@ -3072,10 +3072,10 @@ var getBoundEachPrompt = function(target, possiblePrompts, promptables, choices,
// console.log(k)
// console.dir(possiblePrompts); //console.dir(target)
prompts.push(async ()=>{
// PB : NOTE -- Important in async cases when this needs to be in the same state as when it was invoked.
// We take a snapshot... Shallow.. !! If required deep should be used based on use case.
// If latest altered state is required we can reerence this directly.
// PB : NOTE -- Important in async cases when this {{target}} needs to be in the same state as when it was invoked.
// We need to take a snapshot... Shallow.. !! If required deep should be used based on use case.
// var asyncthis = Object.assign(this);
// By default Latest altered state is provided which is an implicit reference directly.
promptables[k].choices = choices[k]
Object.defineProperty(target, k, getPromptableAsyncPropDescriptor(k, promptables[k]));
return await target[k]

正在加载...
取消
保存