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

fis-preprocessor-js-exception-catch

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

fis-preprocessor-js-exception-catch - npm Package Compare versions

Comparing version

to
0.0.3

4

index.js

@@ -31,3 +31,3 @@ 'use strict';

function addCatch(str, filepath, line, col, inOneLine) {
var _strCatch = "}catch(e){if(typeof alog != 'undefined'){alog('exception.fire','catch',{msg:e.message,path:'" + filepath + "',ln:" + line + "});}}";
var _strCatch = "}catch(e){if(typeof alog != 'undefined'){alog('exception.fire','catch',{msg:e.message || e.description,path:'" + filepath + "',ln:" + line + "});}}";
//funtion整个在一行内,需要加上 "try{" 所占的4个位置

@@ -112,2 +112,2 @@ if(inOneLine){

return arrContent.join('\n');
};
};
{
"name": "fis-preprocessor-js-exception-catch",
"version": "0.0.2",
"version": "0.0.3",
"description": "js文件编译自动加try/catch的fis插件",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -9,3 +9,3 @@ ## 简介

alog('exception.fire', 'catch', {
msg: e.message,
msg: e.message || e.description,
path: 'common:common/widget/slide/slide.js', //编译前的js文件路径

@@ -121,2 +121,2 @@ ln: 25 //编译前该function的结束行号

});
```
```