Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

rantscript

Package Overview
Dependencies
Maintainers
1
Versions
33
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rantscript - npm Package Compare versions

Comparing version
1.3.4
to
1.3.5
+1
-1
package.json
{
"name": "rantscript",
"version": "1.3.4",
"version": "1.3.5",
"description": "A JavaScript wrapper for the FULL devRant API",

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

@@ -115,3 +115,2 @@ 'use strict';

function getFrequentSearchTerms() {

@@ -118,0 +117,0 @@ const url = `${variables['API']}/devrant/search/tags`;

@@ -16,15 +16,5 @@ var devrant = require('./src/index.js');

devrant
.postRant('Testing', 'rantscript', auth)
.weeklyRants('recent', 1, 0)
.then((res)=>{
devrant
.postComment('Test Comment', res.rant_id, auth)
.then((re)=>{
console.log(re)
// This dosn't work :/
devrant
.editComment('Edited', res.rant_id, auth)
.then((r)=>{
console.log(r)
})
})
console.log(res)
})