Skip to content

Commit

Permalink
Fix function name typo (#348)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexjoverm authored and egoist committed Feb 13, 2017
1 parent f46774b commit 8772aa5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/eval.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ var chalk = require('chalk')
* prompt answers data.
*/

module.exports = function evalualte (exp, data) {
module.exports = function evaluate (exp, data) {
/* eslint-disable no-new-func */
var fn = new Function('data', 'with (data) { return ' + exp + '}')
try {
Expand Down

0 comments on commit 8772aa5

Please sign in to comment.