You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 7-8.RSVP
Socket
Socket
Sign inDemoInstall

gulp-utf8-convert

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gulp-utf8-convert

convert file encoding to utf8


Version published
Weekly downloads
679
decreased by-17.7%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

gulp-utf8-convert

a plugin for gulp.js to convert file encoding to utf8

Installation

npm install gulp-utf8-convert

Usage

var gulp = require('gulp');
var utf8Convert = require('gulp-utf8-convert');

gulp.task('convert',function() {
    gulp.src("./test.txt")
        .pipe(utf8Convert({
            encNotMatchHandle:function (file) {
                //notify
            }
        }))
        .pipe(gulp.dest('./'));
});

Keywords

FAQs

Package last updated on 27 May 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc