Skip to content

Commit

Permalink
Avoid eval in async wrappers; fixes #1403
Browse files Browse the repository at this point in the history
  • Loading branch information
megawac committed Apr 17, 2017
1 parent 81d66dd commit 6d19dd3
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 15 deletions.
16 changes: 2 additions & 14 deletions lib/internal/wrapAsync.js
@@ -1,19 +1,7 @@
import identity from 'lodash/identity';
import asyncify from '../asyncify';

var supportsSymbol = typeof Symbol === 'function';

function supportsAsync() {
var supported;
try {
/* eslint no-eval: 0 */
supported = isAsync(eval('(async function () {})'));
} catch (e) {
supported = false;
}
return supported;
}

function isAsync(fn) {
return supportsSymbol && fn[Symbol.toStringTag] === 'AsyncFunction';
}
Expand All @@ -22,6 +10,6 @@ function wrapAsync(asyncFn) {
return isAsync(asyncFn) ? asyncify(asyncFn) : asyncFn;
}

export default supportsAsync() ? wrapAsync : identity;
export default wrapAsync;

export { supportsAsync, isAsync };
export { isAsync };
13 changes: 12 additions & 1 deletion mocha_test/asyncFunctions.js
@@ -1,4 +1,15 @@
var supportsAsync = require('../lib/internal/wrapAsync').supportsAsync;
var isAsync = require('../lib/internal/wrapAsync').isAsync;

function supportsAsync() {
var supported;
try {
/* eslint no-eval: 0 */
supported = isAsync(eval('(async function () {})'));
} catch (e) {
supported = false;
}
return supported;
}

describe('async function support', function () {
this.timeout(100);
Expand Down

0 comments on commit 6d19dd3

Please sign in to comment.