stdin
この関数のパラメーターを使用したいと思います: http://graspjs.com/docs/lib/。
このgrasp
関数は、このパラメーターが と同じインターフェイスを持つオブジェクトであると想定していますprocess.stdin
。そして、私が持っているのは、文字列型のメモリ内の単純な変数です。
この変数をこの関数の stdin 入力に与えるにはどうすればよいですか?
var grasp = require('grasp');
var sourceCode = 'if (condititon) { console.log("In the condition"); }';
grasp({
args: '--equery condititon --replace true',
stdin: SomethingLikeStringToStdin(sourceCode),
callback: console.log
});
予想されるログ:
if (true) { console.log("In the condition"); }