Works with any files / folder, it's delete in remote the target.
git rm -r --cached node_modules
git commit -m 'Remove the now ignored directory node_modules'
git push origin masterThis is a simple example, please consider using createHash instead for passwords in production
const crypto = require('crypto');
const passwordToEncrypt = "AP34IOUR+&"
const salt = "My Awesome Salt"
function encryptData(salt, passwordToEncrypt){Douglas Crockford’s code conventions for JavaScript recommend this pattern when privacy is important discouraging naming properties with the underscore prefix to indicate privacy.
var Person = (function() {
function Person(name) {
this.getName = function() {
return name;