Gulp Isogrammify
Gulp wrapper for isogrammify.
$ npm install --save-dev gulp-isogrammify
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'))
);
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.
MIT © Jared A. Scheel