Sha256: a4619077d9f08d3da5504a32b99f10bdff6358c16e112036a5dfcd37e167cb39
Contents?: true
Size: 631 Bytes
Versions: 44
Compression:
Stored size: 631 Bytes
Contents
'use strict' const isInsidePromise = require('./is-inside-promise') function isInsideCallback(node) { const isCallExpression = node.type === 'FunctionExpression' || node.type === 'ArrowFunctionExpression' || node.type === 'FunctionDeclaration' // this may be controversial // it's totally fine to use promises inside promises if (isInsidePromise(node)) return const name = node.params && node.params[0] && node.params[0].name const firstArgIsError = name === 'err' || name === 'error' const isInACallback = isCallExpression && firstArgIsError return isInACallback } module.exports = isInsideCallback
Version data entries
44 entries across 44 versions & 2 rubygems