Files
old-slucajna-televizija/web/node_modules/jsx-ast-utils/src/values/expressions/CallExpression.js
2017-10-16 11:19:46 +02:00

15 lines
504 B
JavaScript

import getValue from './index';
/**
* Extractor function for a CallExpression type value node.
* A call expression looks like `bar()`
* This will return `bar` as the value to indicate its existence,
* since we can not execute the function bar in a static environment.
*
* @param - value - AST Value object with type `CallExpression`
* @returns - The extracted value converted to correct type.
*/
export default function extractValueFromCallExpression(value) {
return getValue(value.callee);
}