duktape.rb icon indicating copy to clipboard operation
duktape.rb copied to clipboard

Ruby bindings to the Duktape JavaScript interpreter

Results 2 duktape.rb issues
Sort by recently updated
recently updated
newest added

This allows safely passing Ruby values are arguments to IIFEs, e.g. ``` ruby list = %w[foo bar] ctx.call_iife( '(function(arr) { return arr.map(function(val) { return val.slice(1) }) })', list ) #=>...