inline.js 749 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. this._pipe.write(`\n\n Pattern matches ${total} ${pluralizeTest}`);
  2. this._pipe.write(
  3. `\n\n Pattern matches ${total} ${pluralizeTest}`
  4. );
  5. this._pipe
  6. .write(
  7. `\n\n Pattern matches ${total} ${pluralizeTest}`
  8. );
  9. this._pipe.write(`\n\n Pattern matches ${total} ${pluralizeTest} but that's long`);
  10. this._pipe.write(
  11. `\n\n Pattern matches ${total} ${pluralizeTest} but that's long`
  12. );
  13. this._pipe.write(`
  14. \n\n Pattern matches ${total} ${pluralizeTest} but that's long
  15. `);
  16. () => `
  17. a
  18. `;
  19. () =>
  20. `
  21. a
  22. `;
  23. (): {
  24. someLong: boolean,
  25. t: boolean
  26. } => `
  27. a
  28. `;
  29. (): {
  30. someLong: boolean,
  31. t: boolean
  32. } =>
  33. `
  34. a
  35. `;
  36. (
  37. someLong: boolean,
  38. t: boolean
  39. ) => `
  40. a
  41. `;
  42. (
  43. someLong: boolean,
  44. t: boolean
  45. ) =>
  46. `
  47. a
  48. `;