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'));

/gulp-triplet/

    Package Sidebar

    Install

    npm i gulp-triplet

    Weekly Downloads

    4

    Version

    1.2.1

    License

    ISC

    Last publish

    Collaborators

    • systemparadox