Duffer Derek
/**
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @flow strict-local
* @format
* @oncall react_native
*/
'use strict';
import type {PackageJson} from 'metro-resolver/src/types';
const fs = require('fs');
const path = require('path');
class Package {
path: string;
_root: string;
_content: ?PackageJson;
constructor({file}: {file: string, ...}) {
this.path = path.resolve(file);
this._root = path.dirname(this.path);
this._content = null;
}
invalidate() {
this._content = null;
}
read(): PackageJson {
if (this._content == null) {
this._content = JSON.parse(fs.readFileSync(this.path, 'utf8'));
}
return this._content;
}
}
module.exports = Package;
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists