CLI for Oblique Strategies.
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

11 строки
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;