Skip to content

Instantly share code, notes, and snippets.

@goccy
Created December 24, 2012 10:57
Show Gist options
  • Save goccy/4368803 to your computer and use it in GitHub Desktop.
Save goccy/4368803 to your computer and use it in GitHub Desktop.
var code = 'return {\n';
columns.forEach(function(column) {
code += '"' + column.name + '":' + 'parser.readColumnValue(),\n';
});
code += '};\n';
var parseRow = new Function('columns', 'parser', code);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment