diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/current/standalone.xsl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/current/standalone.xsl b/src/current/standalone.xsl index db8ac79..809a765 100644 --- a/src/current/standalone.xsl +++ b/src/current/standalone.xsl @@ -92,10 +92,10 @@ <text>; </text> <!-- we'll export a version that automatically performs the mapping --> - <text>module.exports = function( args_base ) { </text> + <text>module.exports = function( args_base, _canterm ) { </text> <text>var ret; rater.fromMap( args_base, function( args ) {</text> <text> - var rater_result = rater( args ); + var rater_result = rater( args, _canterm ); // perf counter var start = ( new Date() ).getTime(); |