gulp-isogrammify
v0.0.1
Published
Gulp wrapper for awesome isogrammify library (https://github.com/ThomasR/isogrammify)
Downloads
2
Readme
gulp-isogrammify
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