11 lines
136 B

define(function () { 'use strict';
var augment;
augment = x => x.augmented = true;
function x () {}
augment( x );
return x;
});