mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
11 lines
212 B
JavaScript
11 lines
212 B
JavaScript
|
'use strict';
|
||
|
Object.defineProperty(
|
||
|
Object.prototype,
|
||
|
'flatten', {
|
||
|
enumerable: false,
|
||
|
// purposefully named something that
|
||
|
// would never land in JS itself
|
||
|
value: function smoosh() {}
|
||
|
}
|
||
|
);
|