0.0.1 • Published 8 years ago

gulp-isogrammify v0.0.1

Weekly downloads
1
License
MIT
Repository
github
Last release
8 years ago

gulp-isogrammify Build Status

Gulp Isogrammify

Gulp wrapper for isogrammify.

Install

$ npm install --save-dev gulp-isogrammify

Usage

const gulp = require('gulp');
const isogrammify = require('gulp-isogrammify');

gulp.task('default', () => {
  gulp.src('src/file.ext')
    .pipe(isogrammify('isogram'))  //change string to your isogram
    .pipe(gulp.dest('dist'))
);

API

isogrammify(isogram)

options

isogram (required)

Type: string Default: undefined

This string must have no repeating characters, no special characters, and must be the exact number of characters you are trying to replace.

License

MIT © Jared A. Scheel