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

remove-sensible-values

Package Overview
Dependencies
Maintainers
1
Versions
24
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

remove-sensible-values

remove sensible values from an object tree

  • 1.3.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
157
decreased by-69.57%
Maintainers
1
Weekly downloads
 
Created
Source

npm License Typed with TypeScript bundlejs downloads GitHub Issues Build Status Styled with prettier Commitizen friendly Known Vulnerabilities Coverage Status

remove-sensible-values

remove sensible values from an object tree

import { removeSensibleValues } from "remove-sensible-values";

console.log(removeSensibleValues({password : "secret", other: "present" }));
{"password" : "...", "other": "present" }

API

Table of Contents

removeSensibleValues

generates a new object tree by removing sensible values like credentials from the given one

Parameters

  • object Object source
  • toBeRemoved (optional, default key=>key.match(/pass|auth|key|user|secret|token/i))

Returns Object object tree hopefully free of sensible data

install

With npm do:

npm install remove-sensible-values

license

BSD-2-Clause

Keywords

FAQs

Package last updated on 09 Feb 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

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