DEBSOURCES
Skip Quicknav
sources / node-rollup / 3.29.5-1 / test / form / samples / proper-this-context / main.js
123456789
const mutateThis = () => { this.x = 1; }; function Test () { mutateThis(); } const test = new Test();