Submit
Path:
~
/
/
opt
/
alt
/
alt-nodejs16
/
root
/
lib
/
node_modules
/
npm
/
lib
/
utils
/
config
/
File Content:
describe-all.js
const definitions = require('./definitions.js') const localeCompare = require('@isaacs/string-locale-compare')('en') const describeAll = () => { // sort not-deprecated ones to the top /* istanbul ignore next - typically already sorted in the definitions file, * but this is here so that our help doc will stay consistent if we decide * to move them around. */ const sort = ([keya, { deprecated: depa }], [keyb, { deprecated: depb }]) => { return depa && !depb ? 1 : !depa && depb ? -1 : localeCompare(keya, keyb) } return Object.entries(definitions).sort(sort) .map(([key, def]) => def.describe()) .join( '\n\n<!-- automatically generated, do not edit manually -->\n' + '<!-- see lib/utils/config/definitions.js -->\n\n' ) } module.exports = describeAll
Edit
Rename
Chmod
Delete
FILE
FOLDER
Name
Size
Permission
Action
definition.js
6509 bytes
0644
definitions.js
64247 bytes
0644
describe-all.js
812 bytes
0644
flatten.js
1204 bytes
0644
index.js
1536 bytes
0644
N4ST4R_ID | Naxtarrr