In nodejs , I want to copy multiple files to a single file and want to append one file into another file, What is the function name?
this.fs.copy(
this.templatePath('testing.json' + 'testing2.json'),
this.destinationPath('public/index.html')
)
like this, I want to copy from multiple location to single file
this.fs.appendFile('public/index.html', 'hdjkfhsdjkfh');