summaryrefslogtreecommitdiff
path: root/tests/registry/npm/@denotest/cjs-this-in-exports/1.0.0/index.js
blob: 21a9d7d7e970dcad46bb5fcc2ac01c17028ce24c (plain)
1
2
3
4
5
6
7
8
module.exports = {
  getValue() {
    return this.otherMethod();
  },
  otherMethod() {
    return 1;
  },
};