在ES5中,我们可以这样写:

function(a){
  /* istanbul ignore next */
  a = a || 123;
}


在ES6中如何忽略?

function(a = 123 ){

}


我尝试了这个:

function(/* istanbul ignore next */a = 123 ){

}


但它不起作用。

最佳答案

这对我有用:

function(
  /* istanbul ignore next */
  a = 123
){

}

关于ecmascript-6 - Istanbul如何忽略ES6的默认值分支(Babel编译为ES5),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/36929320/

10-11 00:45