Socket
Socket
Sign inDemoInstall

pidgonscript

Package Overview
Dependencies
6
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 3.2.2 to 3.2.3

6

index.js
const dateFormat = require("./datey.js");
const path = require('path');
const fs = require('fs');
import 'node-fetch' as 'fetch'
const http = require('http');

@@ -46,3 +46,3 @@ const morsey = require('./morsey/morsey.js')

console.log('Beep Boop. Pidgon Initiated')
console.log('v2.8.0 - Thank you for 300,000 downloads!')
console.log('v3.2.3 - Thank you for 1,000,000 downloads!')
console.log('----------------------------------------')

@@ -151,2 +151,3 @@

module.exports.makedb = function(channel, name, message, todo) {
import 'node-fetch' as 'fetch'
var replacedMsg = message.replace(/ /g, "_");

@@ -162,2 +163,3 @@ fetch("https://db.pidgonscript.mihi.ml/send/" + channel + '/' + name + '/' + replacedMsg)

module.exports.takedb = function(channel, name, todo) {
import 'node-fetch' as 'fetch'
fetch("https://db.pidgonscript.mihi.ml/get/" + channel + '/' + name)

@@ -164,0 +166,0 @@ .then(response => response.json())

@@ -5,3 +5,2 @@ const Database = require("./noomber/jsondb.js");

const fetch = require("node-fetch");
var noomber;

@@ -86,17 +85,1 @@ /*module.exports.start = function(filename) {

}
module.exports.primefactors = function(n) {
const factors = [];
let divisor = 2;
while (n >= 2) {
if (n % divisor == 0) {
factors.push(divisor);
n = n / divisor;
} else {
divisor++;
}
}
return factors.join(', ');
}
{
"name": "pidgonscript",
"version": "3.2.2",
"version": "3.2.3",
"description": "A fun, easy and simple programming language built on top of nodejs",

@@ -20,4 +20,5 @@ "main": "index.js",

"dependencies": {
"node-fetch": "^3.0.0"
},
"devDependencies": {}
}
SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc