Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
@anyfin/ssntools
Advanced tools
A ssn parsing/validation/formatting library for all countries supported by anyfin
A social security number parsing/validation/formatting library for all countries supported by anyfin.
Countries supported currently:
SE
FI
git clone
this repo.yarn install
installs dependenciesyarn test
for test mode.yarn build
for building the library.const { validate, mask } = require("@anyfin/ssntools");
expect(validate("199404011232", "SE")).toBe(true);
expect(validate("199404011233", "SE")).toBe(false);
expect(mask("199404011233", "SE")).toBe("199404****33");
expect(format("199404011233", "SE")).toBe("940401-1233");
//-----------
expect(validate("040394-6751", "FI")).toBe(true);
expect(validate("040394-6750", "FI")).toBe(false);
expect(mask("040394-6750", "FI")).toBe("040394-***0");
expect(format("040394-6750", "FI")).toBe("040394-6750");
For more details look at the test cases here: index.test.js
Details on formats and specs of National identifiers of Finland and Sweden can be found here: https://en.wikipedia.org/wiki/National_identification_number
Using yarn test
you can trigger the jest test cases.
Additionally you can use yarn link
to run a local version of this package inside another repo to test breaking changes.
In order to deploy new versions, simply bump the version in package.json
and create a new github release.
Github action should automagically deploy it to npm. ✨
FAQs
A ssn parsing/validation/formatting library for all countries supported by anyfin
We found that @anyfin/ssntools demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 open source maintainers collaborating on the project.
Did you know?
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.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.