gulp-triplet

1.2.1 • Public • Published

Gulp plugin for triplet strings.

Transforms this:

function hello() {
    var x = """
        hello
        world
    """;
}

into this:

function hello() {
    var x =


    "hello\nworld\n";
}

See the triplet package for more information.

Usage:

var gulp = require('gulp');
var triplet = require('gulp-triplet');

gulp.src('./src/**/*.js', { buffer: false })
    .pipe(triplet())
    .pipe(gulp.dest('./lib'));

Dependencies (4)

Dev Dependencies (3)

Package Sidebar

Install

npm i gulp-triplet

Weekly Downloads

1

Version

1.2.1

License

ISC

Last publish

Collaborators

  • systemparadox