1
0
mirror of https://github.com/titanscouting/tra-analysis.git synced 2025-07-27 05:08:51 +00:00
Files
apps
data analysis
website
functions
node_modules
.bin
@types
accepts
array-flatten
body-parser
buffer-equal-constant-time
bytes
content-disposition
content-type
cookie
cookie-signature
cors
debug
depd
destroy
ecdsa-sig-formatter
ee-first
encodeurl
escape-html
etag
express
finalhandler
firebase-functions
forwarded
fresh
http-errors
iconv-lite
inherits
ipaddr.js
jsonwebtoken
jwa
jws
lodash
lodash.includes
lodash.isboolean
lodash.isinteger
lodash.isnumber
lodash.isplainobject
lodash.isstring
lodash.once
media-typer
merge-descriptors
methods
mime
mime-db
mime-types
ms
negotiator
npm
bin
changelogs
doc
html
lib
auth
config
doctor
install
action
access-error.js
actions.js
and-add-parent-to-errors.js
and-finish-tracker.js
and-ignore-errors.js
audit.js
check-permissions.js
copy-tree.js
decompose-actions.js
deps.js
diff-trees.js
exists.js
flatten-tree.js
get-requested.js
has-modern-meta.js
inflate-bundled.js
inflate-shrinkwrap.js
is-dev-dep.js
is-extraneous.js
is-fs-access-available.js
is-only-dev.js
is-only-optional.js
is-opt-dep.js
is-prod-dep.js
module-staging-path.js
mutate-into-logical-tree.js
node.js
read-shrinkwrap.js
realize-shrinkwrap-specifier.js
report-optional-failure.js
save.js
update-package-json.js
validate-args.js
validate-tree.js
writable.js
search
utils
access.js
adduser.js
audit.js
bin.js
bugs.js
build.js
cache.js
ci.js
completion.js
config.js
dedupe.js
deprecate.js
dist-tag.js
docs.js
doctor.js
edit.js
explore.js
fetch-package-metadata.js
fetch-package-metadata.md
get.js
help-search.js
help.js
hook.js
init.js
install-ci-test.js
install-test.js
install.js
link.js
logout.js
ls.js
npm.js
outdated.js
owner.js
pack.js
ping.js
prefix.js
profile.js
prune.js
publish.js
rebuild.js
repo.js
restart.js
root.js
run-script.js
search.js
set.js
shrinkwrap.js
star.js
stars.js
start.js
stop.js
substack.js
team.js
test.js
token.js
unbuild.js
uninstall.js
unpublish.js
update.js
version.js
view.js
visnup.js
whoami.js
xmas.js
man
node_modules
scripts
.licensee.json
.mailmap
.npmignore
.travis.yml
AUTHORS
CHANGELOG.md
CONTRIBUTING.md
LICENSE
Makefile
README.md
appveyor.yml
configure
make.bat
package.json
object-assign
on-finished
parseurl
path-to-regexp
proxy-addr
qs
range-parser
raw-body
safe-buffer
safer-buffer
send
serve-static
setprototypeof
statuses
type-is
unpipe
utils-merge
vary
public
.firebaserc
.gitignore
.runtimeconfig.json
firebase.json
firestore.indexes.json
firestore.rules
package-lock.json
.gitattributes
.gitignore
tra-analysis/website/node_modules/npm/lib/install/access-error.js
2019-01-06 13:14:45 -06:00

9 lines
202 B
JavaScript

'use strict'
module.exports = function (dir, er) {
if (!er) return
var accessEr = new Error("EACCES, access '" + dir + "'", -13)
accessEr.code = 'EACCES'
accessEr.path = dir
return accessEr
}