1
0
Fork 0
This repository has been archived on 2022-08-25. You can view files and clone it, but cannot push or open issues or pull requests.
office365-oauth2-authenticator/src/preg-match.js

6 lines
107 B
JavaScript

var pregMatch = function(regex, content) {
return content.match(regex);
}
module.exports = pregMatch;