Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

satella

Package Overview
Dependencies
Maintainers
1
Versions
41
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

satella - npm Package Compare versions

Comparing version 1.0.7 to 1.0.8

2

package.json
{
"name": "satella",
"version": "1.0.7",
"version": "1.0.8",
"description": "Satella - A wrapper for the Discord API made in JS",

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

@@ -11,3 +11,3 @@ module.exports = class Message {

this.guild = client.guilds.get(data.guild_id)
this.user = client.users.get(data.author.id)
this.user = data.author ? client.users.get(data.author.id) : undefined
this.member = data.member ? this.guild.members.get(data.author.id) : null

@@ -14,0 +14,0 @@ this.channel = client.channels.get(data.channel_id)

@@ -10,2 +10,3 @@ module.exports = class User {

this.creatAt = new Date(Math.floor(this.id / 4194304) + 1420070400000)
this.bot = data.bot
}

@@ -12,0 +13,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