return.js 394 B

12345678910111213141516
  1. function foo() {
  2. return this.hasPlugin("dynamicImports") && this.lookahead().type === tt.parenLeft.right;
  3. }
  4. function foo() {
  5. return this.hasPlugin("dynamicImports") && this.lookahead().type === tt.parenLeft.right
  6. ? true
  7. : false;
  8. }
  9. function foo() {
  10. return this.calculate().compute().first.numberOfThings > this.calculate().compute().last.numberOfThings
  11. ? true
  12. : false;
  13. }