如何将箭头函数的主体作为字符串获取?



如何在箭头函数的{}之间获取字符串形式的代码?

var myFn=(arg1,..,argN)=>{
         /**
          *Want to parse
          * ONLY which is between { and }
          * of arrow function 
         */ 
 };

如果很容易解析简单函数的主体:myFn.toString().match(/function[^{]+{([sS]*)}$/)[1];就足够了。但是,Arrow函数的定义中不包含function关键字。

我是来寻找解决方案的,因为我不想写解决方案,但我对公认的答案并不满意。对于任何对ES6 1-liner感兴趣的人,我编写了这个方法,它可以处理我需要的所有情况——包括普通函数和箭头函数。

const getFunctionBody = method => method.toString().replace(/^W*(function[^{]+{([sS]*)}|[^=]+=>[^{]*{([sS]*)}|[^=]+=>(.+))/i, '$2$3$4');

这是我的尝试:

function getArrowFunctionBody(f) {
  const matches = f.toString().match(/^(?:s*(?(?:s*w*s*,?s*)*)?s*?=>s*){?([sS]*)}?$/);
  if (!matches) {
    return null;
  }
  
  const firstPass = matches[1];
  
  // Needed because the RegExp doesn't handle the last '}'.
  const secondPass =
    (firstPass.match(/{/g) || []).length === (firstPass.match(/}/g) || []).length - 1 ?
      firstPass.slice(0, firstPass.lastIndexOf('}')) :
      firstPass
  
  return secondPass;
}
const K = (x) => (y) => x;
const I = (x) => (x);
const V = (x) => (y) => (z) => z(x)(y);
const f = (a, b) => {
  const c = a + b;
  return c;
};
const empty = () => { return undefined; };
console.log(getArrowFunctionBody(K));
console.log(getArrowFunctionBody(I));
console.log(getArrowFunctionBody(V));
console.log(getArrowFunctionBody(f));
console.log(getArrowFunctionBody(empty));

它可能比它需要的更详细,因为我试图在空白处表现得很慷慨。此外,如果有人知道如何跳过第二次传球,我会很高兴听到。最后,我决定不做任何修剪,把它留给打电话的人。

目前只处理简单的函数参数。您还需要一个本机支持箭头功能的浏览器。

相关内容

  • 没有找到相关文章

最新更新