prototypeExtensions.js 259 B

1234567891011121314
  1. /* eslint-disable no-extend-native */
  2. /*
  3. These are dummy prototype extensions to test that the inputmask code can deal with an extension
  4. */
  5. Array.prototype.dummy = function () {
  6. return false;
  7. };
  8. String.prototype.dummy = function () {
  9. return false;
  10. };