0 votes
in JAVA by
What is gulp.dest and how to use it?

1 Answer

0 votes
by

It points to the folder where file needs to written. This returns a writable stream and file objects piped to this are saved to the file system. Folders that don’t exist will be created.

gulp.dest(path[, options])

It has 2 arguments path and an optional Option.The path (output folder) to write files to. Or a function that returns it.

In short src and dest is like copy and paste function.

Related questions

0 votes
asked Feb 15, 2020 in JAVA by rahuljain1
0 votes
asked Feb 15, 2020 in JAVA by rahuljain1
...