gulp-js-escape
v1.0.1
Published
Gulp plugin to turn a file into a JavaScript escaped string
Downloads
9,825
Maintainers
Readme
Gulp JavaScript escape
A Gulp plugin that turns a file into a JavaScript escaped string.
var jsEscape = require('gulp-js-escape');
// file.htm -> some text "needing" escaped
gulp.src( 'file.htm' )
.pipe( jsEscape() )
.dest( 'escaped.js' )
// escaped.js -> "some text \"needing\" escaped"
jsEscape( options )
options.omitDelimiters
Boolean, default = false, if true the quotes around the string are omitted.
Returns Gulp Vinyl transform object stream.
Note that the encoding is assumed to be utf-8. If a different encoding is required then use (another plugin)[https://www.npmjs.com/package/gulp-convert-encoding/] to convert the stream first.