This repository was archived by the owner on Apr 11, 2022. It is now read-only.

Description
Would you accept a pull request that makes it possible to use a string as source instead of a File?
NodeEnvironment already exposes this
public NodeScript createScript(String scriptName, String script, String[] args)
but it is not exposed in Engine:
case class ExecuteJs(
source: java.io.File,
args: immutable.Seq[String],
timeout: FiniteDuration,
timeoutExitValue: Int = Int.MinValue,
environment: Map[String, String] = Map.empty
)