summaryrefslogtreecommitdiff
path: root/test/fixtures/intrinsic-mutation.js
blob: 331e3864e4bfe4df3d9a4a5991f72fb523ebb4f9 (plain)
1
2
3
4
5
6
7
8
9
10
'use strict';
Object.defineProperty(
  Object.prototype,
  'flatten', {
    enumerable: false,
    // purposefully named something that
    // would never land in JS itself
    value: function smoosh() {}
  }
);