mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-04-13 04:00:12 -04:00
7 lines
184 B
TypeScript
7 lines
184 B
TypeScript
import { readFileSync } from 'fs';
|
|
import { load } from 'js-yaml';
|
|
|
|
export const buildCertification = (filePath: string) => ({
|
|
challenges: [load(readFileSync(filePath, 'utf8'))]
|
|
});
|