@solvprotocol/upgrade-safe-transpiler
Version:
Solidity preprocessor used to generate OpenZeppelin Contracts Upgrade Safe.
17 lines • 438 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.execall = void 0;
function* execall(re, text) {
re = new RegExp(re, re.flags + (re.sticky ? '' : 'y'));
while (true) {
const match = re.exec(text);
if (match && match[0] !== '') {
yield match;
}
else {
break;
}
}
}
exports.execall = execall;
//# sourceMappingURL=execall.js.map