ekstrakt
v0.2.0
Published
Extract things from strings
Readme
Ekstrakt
Extract things from strings.
Install
npm i ekstraktUsage
const extract = require('ekstrakt')
const emails = extract.emails('string with [email protected]')
// Returns: ['[email protected]']
const email = extract.email('Mail <[email protected]>')
// Returns: ['Mail', '[email protected]']ISC licensed. Enjoy!
