Sha256: ceaff2eedb72e250bbdaf96429e31ee249a2c2cda84538c9fb26bc7e0907a5a8
Contents?: true
Size: 416 Bytes
Versions: 52
Compression:
Stored size: 416 Bytes
Contents
/** * Extractor function for a FunctionExpression type value node. * Statically, we can't execute the given function, so just return a function * to indicate that the value is present. * * @param - value - AST Value object with type `FunctionExpression` * @returns - The extracted value converted to correct type. */ export default function extractValueFromFunctionExpression(value) { return () => value; }
Version data entries
52 entries across 52 versions & 4 rubygems