@krishnakodoth/mask-string
v1.0.1
Published
Repository for the javascript function for masking a given email id / array of email ids
Downloads
7
Maintainers
Readme
mask-string
Repository for the javascript function for masking a given string
Install
npm i @krishnakodoth/mask-string
Usage
const pkg = require("@krishnakodoth/mask-string");
console.log(pkg.maskEmail([
"[email protected]",
"[email protected]"
]))
import { maskEmail } from "@krishnakodoth/mask-string";
function App() {
console.log(maskEmail(["[email protected]", "[email protected]"]));
}