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

ponsqb

Package Overview
Dependencies
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ponsqb - npm Package Compare versions

Comparing version 0.0.3 to 0.0.4

2

package.json
{
"name": "ponsqb",
"version": "0.0.3",
"version": "0.0.4",
"description": "ponsqb js client",

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

@@ -1,4 +0,4 @@

const createRequestInstance = require('./request.js')
import createRequestInstance from './request.js'
module.exports = async function(connection, attributes) {
export default async function(connection, attributes) {
let me = attributes

@@ -5,0 +5,0 @@

@@ -1,8 +0,7 @@

const axiosGlobal = require('axios')
import axiosGlobal from 'axios'
module.exports = function(token, options = {}) {
export default function(token, options = {}) {
const axios = axiosGlobal.create({
baseURL: options.endpoint || 'https://ponsqb.jlockard.com'
})
axios.defaults.headers.common['Content-Type'] = 'application/json'

@@ -9,0 +8,0 @@ setToken(token)

@@ -1,5 +0,5 @@

const createConnection = require('./connection.js')
const createBridgeInstance = require('./bridge.js')
import createConnection from './connection.js'
import createBridgeInstance from './bridge.js'
module.exports = async function(token, options = {}) {
export default async function(token, options = {}) {
const connection = createConnection(token, options)

@@ -6,0 +6,0 @@ let me = null

@@ -1,2 +0,2 @@

module.exports = async function(connection, bridge, attributes) {
export default async function(connection, bridge, attributes) {
let me = attributes

@@ -3,0 +3,0 @@

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