utils.js 77 B

123456
  1. function MyAssert(value) {
  2. if (!value) {
  3. throw "Assert Failed";
  4. }
  5. }