Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- const var_reg = /(\w+)=(.+)/g;
- const matches = [...data.matchAll(var_reg)];
- matches.forEach(match => {
- setLocal(match[1], match[2]);
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement