shell bypass 403
GrazzMean Shell
: /home/homesquasz/devprod/Commercial/node_modules/eslint-plugin-unicorn/rules/utils/ [ drwx---r-x ]
'use strict';
/**
Gather a list of all Scopes starting recursively from the input Scope.
@param {Scope} scope - The Scope to start checking from.
@returns {Scope[]} - The resulting Scopes.
*/
const getScopes = scope => [
scope,
...scope.childScopes.flatMap(scope => getScopes(scope)),
];
module.exports = getScopes;