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

caccl-authorizer

Package Overview
Dependencies
Maintainers
1
Versions
115
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

caccl-authorizer - npm Package Compare versions

Comparing version 1.0.44 to 1.0.45

9

index.js

@@ -152,3 +152,10 @@ const fs = require('fs');

});
const scopes = [].concat(...scopeLists);
const scopes = Array.from(
// Remove duplicates by putting items in a set
new Set(
[].concat(...scopeLists)
)
);
const scopeString = scopes.join(' ');

@@ -155,0 +162,0 @@ scopeAuthPageQueryAddon = `&scopes=${encodeURIComponent(scopeString)}`;

2

package.json
{
"name": "caccl-authorizer",
"version": "1.0.44",
"version": "1.0.45",
"description": "Acquires Canvas tokens through via OAuth, stores refresh tokens, and refreshes access tokens when they expire.",

@@ -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