Socket
Socket
Sign inDemoInstall

remotedev-utils

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

remotedev-utils - npm Package Compare versions

Comparing version 0.1.3 to 0.1.4

2

lib/index.js

@@ -64,2 +64,4 @@ 'use strict';

Object.getOwnPropertyNames(m).forEach(function (key) {
var propDescriptor = Object.getOwnPropertyDescriptor(m, key);
if (!propDescriptor || 'get' in propDescriptor || 'set' in propDescriptor) return;
var prop = m[key];

@@ -66,0 +68,0 @@ if (typeof prop === 'function' && key !== 'constructor') {

2

package.json
{
"name": "remotedev-utils",
"version": "0.1.3",
"version": "0.1.4",
"description": "Utils for remotedev infrastructure",

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

@@ -35,2 +35,4 @@ import getParams from 'get-params';

Object.getOwnPropertyNames(m).forEach(key => {
const propDescriptor = Object.getOwnPropertyDescriptor(m, key);
if (!propDescriptor || 'get' in propDescriptor || 'set' in propDescriptor) return;
const prop = m[key];

@@ -37,0 +39,0 @@ if (typeof prop === 'function' && key !== 'constructor') {

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