armcord/utils/ArmCord.js

13 lines
357 B
JavaScript
Raw Normal View History

2021-05-09 16:57:48 +00:00
exports.Version = "DevBuild";
exports.addStyle = function(styleString) {
const style = document.createElement('style');
style.textContent = styleString;
document.head.append(style);
};
exports.addScript = function(scriptString) {
var script = document.createElement('script');
script.textContent = scriptString;
document.body.append(script);
};