`Q.when` 的 Bluebird 等价物是什么?

What is the Bluebird equivalent of `Q.when`?

从 Q 切换到 Bluebird,我只是想确保它在文化上是正确的:是否有等同于 Q.when(someValue);Q(someValue); 的内容?

Promise.resolve(someValue);吗?

Is it Promise.resolve(someValue);?

是的。