fn.js 414 B

123456789101112131415161718192021
  1. /**
  2. * Copyright © Magento, Inc. All rights reserved.
  3. * See COPYING.txt for license details.
  4. */
  5. define([], function () {
  6. 'use strict';
  7. /**
  8. * Function used to be a placeholder for mage-init directive.
  9. */
  10. function fn() {
  11. fn.testCallback.apply(fn, arguments);
  12. }
  13. /**
  14. * Function whose call wll be tested.
  15. */
  16. fn.testCallback = function () {};
  17. return fn;
  18. });