
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
It finds dates in your text with Node JS and returns extracted strings, start and end indices, the date object. It works for English, Russian and Ukrainian languages in the date range from 1900 to 2000.
Method can be called by datefinder(text), where text is your text.
npm install datefinder --save
const dateFinder = require('datefinder')
let text = 'Це трапилося 2 січня 2001 року. Я отримав листа, на якому була зазначена дата 12.12.2004.'
console.log(dateFinder(text))
Expected outcome:
[ { startIndex: 12,
endIndex: 30,
string: ' 2 січня 2001 року',
date: 2001-01-02T00:00:00.000Z },
{ startIndex: 78,
endIndex: 88,
string: '12.12.2004',
date: 2004-12-12T00:00:00.000Z } ]
This package was inspired by akoumjian's datefinder.
MIT
FAQs
A Node package for locating dates inside text
We found that datefinder demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.