UNPKG

imagebase64-regex

Version:

Regular expression for matching images in base64 encoded strings

6 lines (5 loc) 130 B
'use strict'; module.exports = () => { const regex = '(data:image\/[^;]+;base64[^"]+)'; return new RegExp(regex, 'g'); }