包详细信息

edit-string

jdxcode35.7kWTFPL1.1.6

edit a string in $EDITOR

自述文件

edit-string

const edit = require('edit-string')

async function run () {
  // open 'foo' in $EDITOR
  let s = await edit('foo')
  console.dir(s)
}
run()