faker-js / faker

Generate massive amounts of fake data in the browser and node.js
https://fakerjs.dev
Other
12.9k stars 919 forks source link

Deprecate finance.maskedNumber for removal #2504

Open ST-DDT opened 1 year ago

ST-DDT commented 1 year ago

We want to deprecate the finance.maskedNumber() method for removal.

Reasons for removal

Suggested workaround

const data = faker.finance.iban(); // "DE31070946979005090431"
const maskedData = data.replace(/(?<=.{4})\w(?=.{2})/g, '*'); // "DE31****************31"

See also

ST-DDT commented 1 year ago

On hold until after the release of v9.0 to give the community time to react to this suggestion and state whether they use the method, what for and how it could be made more useful.