���� JFIF �� � ( %"1"%)+...383,7(-.-
![]() Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20 System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64 User : apache ( 48) PHP Version : 7.4.20 Disable Function : NONE Directory : /home/real/node-v13.0.1/lib/internal/process/ |
'use strict'; const { JSON, Object, Reflect } = primordials; const { ERR_MANIFEST_TDZ, } = require('internal/errors').codes; const { Manifest } = require('internal/policy/manifest'); let manifest; let manifestSrc; let manifestURL; module.exports = Object.freeze({ __proto__: null, setup(src, url) { manifestSrc = src; manifestURL = url; if (src === null) { manifest = null; return; } const json = JSON.parse(src, (_, o) => { if (o && typeof o === 'object') { Reflect.setPrototypeOf(o, null); Object.freeze(o); } return o; }); manifest = new Manifest(json, url); }, get manifest() { if (typeof manifest === 'undefined') { throw new ERR_MANIFEST_TDZ(); } return manifest; }, get src() { if (typeof manifestSrc === 'undefined') { throw new ERR_MANIFEST_TDZ(); } return manifestSrc; }, get url() { if (typeof manifestURL === 'undefined') { throw new ERR_MANIFEST_TDZ(); } return manifestURL; }, assertIntegrity(moduleURL, content) { this.manifest.assertIntegrity(moduleURL, content); } });