Source: lib/debug/asserts.js

  1. /*! @license
  2. * Shaka Player
  3. * Copyright 2016 Google LLC
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. goog.provide('goog.asserts');
  7. /**
  8. * @summary An assertion framework which is compiled out for deployment.
  9. * NOTE: this is not the closure library version. This uses the same name so
  10. * the closure compiler will be able to use the conditions to assist type
  11. * checking.
  12. */
  13. goog.asserts = class {
  14. /**
  15. * @param {*} val
  16. * @param {string} message
  17. */
  18. static assert(val, message) {}
  19. };
  20. /**
  21. * @define {boolean} true to enable asserts, false otherwise.
  22. */
  23. goog.asserts.ENABLE_ASSERTS = goog.DEBUG;
  24. // Install assert functions.
  25. if (goog.asserts.ENABLE_ASSERTS) {
  26. if (console.assert && console.assert.bind) {
  27. // eslint-disable-next-line no-restricted-syntax
  28. goog.asserts.assert = console.assert.bind(console);
  29. }
  30. }