CLI for Oblique Strategies.
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

11 řádky
284 B

  1. import { readFile } from 'fs/promises';
  2. // input is without the prefix
  3. export const read = async (input: string) => {
  4. const buffer = await readFile(input);
  5. const contents = buffer.toString('utf-8');
  6. return contents.split('\n\n');
  7. };
  8. export const prefix = 'file:///' as const;