ModuleCircularFoo.js 675 B

123456789101112131415
  1. //-------------------------------------------------------------------------------------------------------
  2. // Copyright (C) Microsoft. All rights reserved.
  3. // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
  4. //-------------------------------------------------------------------------------------------------------
  5. import { circular_bar, increment, counter } from "ModuleCircularBar.js"
  6. export function circular_foo() {
  7. if (counter == 0) {
  8. return circular_bar();
  9. } else {
  10. increment();
  11. return counter;
  12. }
  13. }
  14. export { circular_bar as rexportbar } from "ModuleCircularBar.js"