UNPKG

270 BPlain TextView Raw
1import { IGetPackageData } from './types';
2import getPackageData from 'vamtiger-require';
3
4export default async function({path: packageDataPath}: IGetPackageData) {
5 const packageData = getPackageData({
6 path: packageDataPath
7 });
8
9 return packageData;
10}
\No newline at end of file