New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

grunt-iconv

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

grunt-iconv - npm Package Compare versions

Comparing version

to
0.0.4

2

package.json
{
"name": "grunt-iconv",
"description": "change file encoding",
"version": "0.0.3",
"version": "0.0.4",
"homepage": "https://github.com/amdgigabyte/grunt-iconv",

@@ -6,0 +6,0 @@ "author": {

@@ -18,6 +18,10 @@ /*

var f_charset,t_charset;
var options = this.options({
from_charset :'',
to_charset : ''
});
this.data.options = this.data.options || {};
f_charset = this.data.options.from_charset || 'utf8';
t_charset = this.data.options.to_charset || 'utf8';
f_charset = options.from_charset || 'utf8';
t_charset = options.to_charset || 'utf8';

@@ -24,0 +28,0 @@ this.files.forEach(function(files){