登录 注册
当前位置:主页 > 资源下载 > 13 > 从JavaScript代码中移除控制台、警报和调试器语句的功能被称为strip-debug

从JavaScript代码中移除控制台、警报和调试器语句的功能被称为strip-debug

  • 更新:2024-12-01 12:03:02
  • 大小:5KB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:其它 - 开发技术
  • 格式:ZIP

资源介绍

条调试 从JavaScript代码中删除console , alert和debugger语句 对于确保您没有在生产代码中保留任何日志记录很有用。 也可以作为 / / 插件使用。 用法 $ npm install strip-debug 用法 const stripDebug = require ( 'strip-debug' ) ; stripDebug ( 'function foo(){console.log("foo");alert("foo");debugger;}' ) . toString ( ) ; //=> 'function foo(){void 0;void 0;}' 原料药 stripDebug(输入) 返回修改后的 ,可用于进行其他修改。 调用.toString()以获取字符串化的输出。 为了避免产生任何副作用,请使用void 0代替console.* /