Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

flex-combo

Package Overview
Dependencies
Maintainers
1
Versions
164
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

flex-combo - npm Package Compare versions

Comparing version 0.2.3 to 0.2.4

9

flex-combo.js

@@ -134,3 +134,4 @@ var http = require('http')

param.prjDir = prjDir;
var fileReg = new RegExp(param.supportedFile);
console.log(param);
var fileReg = new RegExp(param.supportedFile);
return function(req, res, next) {

@@ -259,2 +260,8 @@ //远程请求的域名不能和访问域名一致,否则会陷入请求循环。

var buff = joinbuffers(buffs);
//fix 80% situation bom problem.quick and dirty
if(buff[0] === 239 && buff[1] === 187 && buff[2] === 191) {
buff = buff.slice(3, buff.length);
}
var charset = isUtf8(buff) ? 'utf8' : 'gbk';

@@ -261,0 +268,0 @@ reqArray[id].content = adaptCharset(buff, param.charset, charset);

2

package.json
{
"name": "flex-combo",
"version": "0.2.3",
"version": "0.2.4",
"description": "The Flex-combo is combo tool designed for web front-end developer. It support various kinds of combo format by modify configuration(eg. yahoo combo).",

@@ -5,0 +5,0 @@ "main": "flex-combo.js",

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc