Skip to content
This repository has been archived by the owner on Nov 4, 2024. It is now read-only.

Commit

Permalink
Fix runResult assignment typo. [closes #760]
Browse files Browse the repository at this point in the history
  • Loading branch information
jdalton committed Mar 21, 2019
1 parent 2941c50 commit 16516d0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/entry.js
Original file line number Diff line number Diff line change
Expand Up @@ -524,9 +524,9 @@ class Entry {

const { runtime } = childEntry

const runResult =
runtime !== null &&
runtime.runResult
const runResult = runtime === null
? void 0
: runtime.runResult

let threw = true

Expand Down

0 comments on commit 16516d0

Please sign in to comment.