Skip to content

Latest commit

 

History

History
32 lines (20 loc) · 465 Bytes

README.md

File metadata and controls

32 lines (20 loc) · 465 Bytes

node-sanitizer

Node Object Sanitizer

Installation

Clone the repo and make it yours:

yarn add node-sanitizer

Use

const sanitizer = require('node-sanitizer');

const obj = {
  username: '[email protected]',
  password: 'veryverysecret',
  fullname: 'Awesome guy',
};

const sanitizedObject = sanitizer(obj, ['password']);

console.log(sanitizedObject);

License

MIT License - Suhendra Ahmad