CLI for Oblique Strategies.
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

11 rader
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;