mirror of
https://github.com/Equicord/Equicord.git
synced 2025-03-14 06:00:27 -04:00
14 lines
387 B
TypeScript
14 lines
387 B
TypeScript
import definePlugin from '../utils/types';
|
|
|
|
export default definePlugin({
|
|
name: "Experiments",
|
|
author: "Vendicated",
|
|
description: "Enable Experiments",
|
|
patches: [{
|
|
find: "Object.defineProperties(this,{isDeveloper",
|
|
replacement: {
|
|
match: /(?<={isDeveloper:\{[^}]+,get:function\(\)\{return )\w/,
|
|
replace: "true"
|
|
}
|
|
}]
|
|
});
|