You're Invited: Meet the Socket team at BSidesSF and RSAC - April 27 - May 1.RSVP
Socket
Sign inDemoInstall
Socket

oc-client

Package Overview
Dependencies
Maintainers
4
Versions
119
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

oc-client - npm Package Compare versions

Comparing version

to
3.2.5

2

package.json
{
"name": "oc-client",
"version": "3.2.4",
"version": "3.2.5",
"description": "Node.js oc client",

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

@@ -79,3 +79,3 @@ oc-client

client.init({
headers { 'accept-language': 'en-US'}
headers: { 'accept-language': 'en-US'}
}, function(error, responses){

@@ -82,0 +82,0 @@ console.log(error);

@@ -34,4 +34,4 @@ 'use strict';

init: function(options, callback) {
const renderComponents = options.renderComponents || renderComponents;
const warmup = new Warmup(config, renderComponents);
const _renderComponents = options.renderComponents || renderComponents;
const warmup = new Warmup(config, _renderComponents);
return warmup(options, callback);

@@ -38,0 +38,0 @@ },